Elementary table: Fixed wrong API name. Patch by Lionel Orry

<lionel.orry@gmail.com>

From Lionel Orry:
Hi devs,

while working on the ffi-efl Ruby bindings for the EFL, I noticed a
wrong declaration in Elementary.h:
s/elm_table_homogeneous_get/elm_table_homogenous_get/.

The patch can be found here: http://pastie.org/1846490

To apply:

cd <path/to/elementary>
wget -O - http://pastie.org/pastes/1846490/download | patch -p0

Thanks in advance,
Lionel


SVN revision: 59033
This commit is contained in:
Daniel Juyung Seo 2011-04-29 09:04:48 +00:00
parent ec3d7792e2
commit 492f4af0a0
1 changed files with 1 additions and 1 deletions

View File

@ -900,7 +900,7 @@ extern "C" {
/* table */
EAPI Evas_Object *elm_table_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
EAPI void elm_table_homogenous_set(Evas_Object *obj, Eina_Bool homogenous) EINA_ARG_NONNULL(1);
EAPI Eina_Bool elm_table_homogeneous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
EAPI Eina_Bool elm_table_homogenous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
EAPI void elm_table_padding_set(Evas_Object *obj, Evas_Coord horizontal, Evas_Coord vertical) EINA_ARG_NONNULL(1);
EAPI void elm_table_padding_get(const Evas_Object *obj, Evas_Coord *horizontal, Evas_Coord *vertical) EINA_ARG_NONNULL(1);
EAPI void elm_table_pack(Evas_Object *obj, Evas_Object *subobj, int x, int y, int w, int h) EINA_ARG_NONNULL(1);