From e80b1779c2e48f92d197d8bc87348f1a5268dd56 Mon Sep 17 00:00:00 2001 From: Daniel Juyung Seo Date: Sat, 30 Oct 2010 17:47:00 +0900 Subject: [PATCH] [elm_genlist.c] Bug fix from last commit. commit 3fdac862a5795f31c738586e02dd3336497d39b6 Author: Daniel Juyung Seo Date: Sat Oct 30 17:19:10 2010 +0900 [elm_genlist.c] Refactoring. + Removed unused function : _set_groupitem() + Indentation fixed : elm_genlist_item_del() --- src/lib/elm_genlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elm_genlist.c b/src/lib/elm_genlist.c index 32cfe07..b3cef21 100644 --- a/src/lib/elm_genlist.c +++ b/src/lib/elm_genlist.c @@ -4528,7 +4528,7 @@ elm_genlist_item_del(Elm_Genlist_Item *it) it->wd->calc_job = ecore_job_add(_calc_job, it->wd); } if (it->itc->func.del) - it->itc->func.del((void *)it->base.data, it->base.widget); + it->itc->func.del((void *)it->data, it->wd->obj); return; } _item_del(it); -- 2.7.4