From: seoz Date: Fri, 29 Apr 2011 09:04:48 +0000 (+0000) Subject: Elementary table: Fixed wrong API name. Patch by Lionel Orry X-Git-Tag: REL_F_I9200_20110722_1~8^2~50^2~403 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b9d761cbe322aef0e1f49d6fec88e7d477a3ff53;p=framework%2Fuifw%2Felementary.git Elementary table: Fixed wrong API name. Patch by Lionel Orry 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 wget -O - http://pastie.org/pastes/1846490/download | patch -p0 Thanks in advance, Lionel git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@59033 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/lib/Elementary.h.in b/src/lib/Elementary.h.in index 5038916..7d3e202 100644 --- a/src/lib/Elementary.h.in +++ b/src/lib/Elementary.h.in @@ -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);