Elementary: fix the indentation

This commit is contained in:
Jaehwan Kim 2016-05-30 11:36:49 +09:00
parent c59d222f6d
commit 945932e1b1
5 changed files with 6 additions and 6 deletions

View File

@ -310,7 +310,7 @@ _efl_ui_box_efl_pack_unpack_all(Eo *obj, Efl_Ui_Box_Data *pd)
pd->delete_me = EINA_TRUE;
bd = evas_object_smart_data_get(wd->resize_obj);
EINA_LIST_FOREACH(bd->children, l, opt)
_elm_widget_sub_object_redirect_to_top(obj, opt->obj);
_elm_widget_sub_object_redirect_to_top(obj, opt->obj);
pd->delete_me = EINA_FALSE;
ret = evas_object_box_remove_all(wd->resize_obj, EINA_FALSE);

View File

@ -536,7 +536,7 @@ _elm_box_unpack(Eo *obj, Elm_Box_Data *_pd EINA_UNUSED, Evas_Object *subobj)
ELM_WIDGET_DATA_GET_OR_RETURN(obj, wd);
if (evas_object_box_remove(wd->resize_obj, subobj))
_elm_widget_sub_object_redirect_to_top(obj, subobj);
_elm_widget_sub_object_redirect_to_top(obj, subobj);
}
EOLIAN static void
@ -551,7 +551,7 @@ _elm_box_unpack_all(Eo *obj, Elm_Box_Data *pd)
pd->delete_me = EINA_TRUE;
bd = evas_object_smart_data_get(wd->resize_obj);
EINA_LIST_FOREACH (bd->children, l, opt)
_elm_widget_sub_object_redirect_to_top(obj, opt->obj);
_elm_widget_sub_object_redirect_to_top(obj, opt->obj);
pd->delete_me = EINA_FALSE;
/* EINA_FALSE means do not delete objects */

View File

@ -221,7 +221,7 @@ _elm_grid_clear(Eo *obj, void *_pd EINA_UNUSED, Eina_Bool clear)
{
chld = evas_object_grid_children_get(wd->resize_obj);
EINA_LIST_FREE(chld, o)
_elm_widget_sub_object_redirect_to_top(obj, o);
_elm_widget_sub_object_redirect_to_top(obj, o);
}
evas_object_grid_clear(wd->resize_obj, clear);

View File

@ -994,7 +994,7 @@ _elm_panel_content_unset(Eo *obj, Elm_Panel_Data *sd, const char *part)
evas_object_box_remove_all(sd->bx, EINA_FALSE);
if (sd->scrollable)
_elm_widget_sub_object_redirect_to_top(sd->scr_ly, sd->content);
_elm_widget_sub_object_redirect_to_top(sd->scr_ly, sd->content);
sd->content = NULL;
return ret;

View File

@ -840,7 +840,7 @@ _elm_widget_sub_object_redirect_to_top(Evas_Object *obj, Evas_Object *sobj)
{
Eina_Bool ret = elm_widget_sub_object_del(obj, sobj);
if (ret)
ret = elm_widget_sub_object_add(elm_widget_top_get(obj), sobj);
ret = elm_widget_sub_object_add(elm_widget_top_get(obj), sobj);
return ret;
}