From 945932e1b1c66a2a19f0410c4f95c4449bf767d7 Mon Sep 17 00:00:00 2001 From: Jaehwan Kim Date: Mon, 30 May 2016 11:36:49 +0900 Subject: [PATCH] Elementary: fix the indentation --- src/lib/elementary/efl_ui_box.c | 2 +- src/lib/elementary/elm_box.c | 4 ++-- src/lib/elementary/elm_grid.c | 2 +- src/lib/elementary/elm_panel.c | 2 +- src/lib/elementary/elm_widget.h | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/lib/elementary/efl_ui_box.c b/src/lib/elementary/efl_ui_box.c index 0c1f7932c6..9f8291f285 100644 --- a/src/lib/elementary/efl_ui_box.c +++ b/src/lib/elementary/efl_ui_box.c @@ -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); diff --git a/src/lib/elementary/elm_box.c b/src/lib/elementary/elm_box.c index d7262a86cb..962ebfb0c2 100644 --- a/src/lib/elementary/elm_box.c +++ b/src/lib/elementary/elm_box.c @@ -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 */ diff --git a/src/lib/elementary/elm_grid.c b/src/lib/elementary/elm_grid.c index 7ab8359fbc..f28a16165c 100644 --- a/src/lib/elementary/elm_grid.c +++ b/src/lib/elementary/elm_grid.c @@ -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); diff --git a/src/lib/elementary/elm_panel.c b/src/lib/elementary/elm_panel.c index 406e7d36f8..5ccfbdd7a8 100644 --- a/src/lib/elementary/elm_panel.c +++ b/src/lib/elementary/elm_panel.c @@ -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; diff --git a/src/lib/elementary/elm_widget.h b/src/lib/elementary/elm_widget.h index e99a6433d9..b0544a520f 100644 --- a/src/lib/elementary/elm_widget.h +++ b/src/lib/elementary/elm_widget.h @@ -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; }