From 4f6629473d86c4cc2fbb55ce7064d396be64895c Mon Sep 17 00:00:00 2001 From: Daniel Juyung Seo Date: Tue, 16 Dec 2014 00:43:18 +0900 Subject: [PATCH] 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)); -- 2.7.4