summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmitesh Singh <amitesh.sh@samsung.com>2015-09-01 08:45:38 +0530
committerAmitesh Singh <amitesh.sh@samsung.com>2015-09-01 08:45:38 +0530
commitb6a1685adfe1dfb4881f6c322cb194153087b095 (patch)
tree08d5221ae982800ab2b091e9838a64626051373d
parentaeefb29062dfac0b00afc54cdf4de1bd461c8e2a (diff)
downloadelementary-b6a1685adfe1dfb4881f6c322cb194153087b095.tar.gz
genlist: fix indentation & remove whitespaces
-rw-r--r--src/lib/elm_genlist.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/elm_genlist.c b/src/lib/elm_genlist.c
index 687040f0d..e620c47f0 100644
--- a/src/lib/elm_genlist.c
+++ b/src/lib/elm_genlist.c
@@ -3204,14 +3204,14 @@ _elm_genlist_elm_widget_on_focus(Eo *obj, Elm_Genlist_Data *sd)
eo_it = elm_genlist_first_item_get(obj);
is_sel = EINA_TRUE;
}
-
+
while (eo_it)
- {
- ELM_GENLIST_ITEM_DATA_GET(eo_it, it);
- if ((!_is_no_select(it)) && (!elm_object_item_disabled_get(eo_it)))
- break;
- eo_it = EO_OBJ(ELM_GEN_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->next));
- }
+ {
+ ELM_GENLIST_ITEM_DATA_GET(eo_it, it);
+ if ((!_is_no_select(it)) && (!elm_object_item_disabled_get(eo_it)))
+ break;
+ eo_it = EO_OBJ(ELM_GEN_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->next));
+ }
if (eo_it)
{