table: Refactor internal codes to keep consistency.

This commit is contained in:
Daniel Juyung Seo 2014-12-16 00:43:18 +09:00
parent b97c0d5934
commit 74176d08e8
1 changed files with 3 additions and 4 deletions

View File

@ -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));