seoz pushed a commit to branch master.
http://git.enlightenment.org/core/elementary.git/commit/?id=360f06dde464ebc46945adeb3fcc8c216e770fc1
commit 360f06dde464ebc46945adeb3fcc8c216e770fc1
Author: Chinmaya <chinmaya@chinmaya-VirtualBox.(none)>
Date: Wed Aug 6 13:58:51 2014 +0900
Genlist: Fixed indentation.
Summary: Fixed indentation.
Test Plan: -NA-
Reviewers: seoz, raster
Subscribers: seoz
Differential Revision: https://phab.enlightenment.org/D1269
---
src/lib/elm_genlist.c | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/src/lib/elm_genlist.c b/src/lib/elm_genlist.c
index 923c4da..548cd46 100644
--- a/src/lib/elm_genlist.c
+++ b/src/lib/elm_genlist.c
@@ -5667,18 +5667,18 @@ _item_del_pre_hook(Elm_Object_Item *item)
if (it->walking > 0)
{
- // FIXME: relative will be better to be fixed. it is too harsh.
- if (it->item->rel)
- {
- it->item->rel->item->rel_revs =
- eina_list_remove(it->item->rel->item->rel_revs, it);
- it->item->rel = NULL;
- }
- if (it->item->rel_revs)
- {
- Elm_Gen_Item *tmp;
- EINA_LIST_FREE(it->item->rel_revs, tmp) tmp->item->rel = NULL;
- }
+ // FIXME: relative will be better to be fixed. it is too harsh.
+ if (it->item->rel)
+ {
+ it->item->rel->item->rel_revs =
+ eina_list_remove(it->item->rel->item->rel_revs, it);
+ it->item->rel = NULL;
+ }
+ if (it->item->rel_revs)
+ {
+ Elm_Gen_Item *tmp;
+ EINA_LIST_FREE(it->item->rel_revs, tmp) tmp->item->rel = NULL;
+ }
elm_genlist_item_subitems_clear(item);
if (sd->show_item == it)
sd->show_item = NULL;
--