seoz pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=4f6629473d86c4cc2fbb55ce7064d396be64895c
commit 4f6629473d86c4cc2fbb55ce7064d396be64895c Author: Daniel Juyung Seo <[email protected]> Date: Tue Dec 16 00:43:18 2014 +0900 table: Refactor internal codes to keep consistency. --- src/lib/elm_table.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/lib/elm_table.c b/src/lib/elm_table.c index 973c5b9..e8faaf4 100644 --- a/src/lib/elm_table.c +++ b/src/lib/elm_table.c @@ -109,10 +109,9 @@ _mirrored_set(Evas_Object *obj, Eina_Bool rtl) EOLIAN static Eina_Bool _elm_table_elm_widget_theme_apply(Eo *obj, void *sd EINA_UNUSED) { - Eina_Bool super_ret = EINA_FALSE; - eo_do_super(obj, MY_CLASS, super_ret = elm_obj_widget_theme_apply()); - if (super_ret == EINA_FALSE) - return EINA_FALSE; + Eina_Bool int_ret = EINA_FALSE; + eo_do_super(obj, MY_CLASS, int_ret = elm_obj_widget_theme_apply()); + if (!int_ret) return EINA_FALSE; _mirrored_set(obj, elm_widget_mirrored_get(obj)); --
