davemds pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=8204d750871f53ac2f9981274a2151709d2a8c83
commit 8204d750871f53ac2f9981274a2151709d2a8c83 Author: davemds <[email protected]> Date: Fri Aug 1 16:28:57 2014 +0200 Genlist: fix search_by_text_item_get() text_get call The text_get function was called with the wrong params, now its usage is consistent with the rest of the code. --- src/lib/elm_genlist.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/lib/elm_genlist.c b/src/lib/elm_genlist.c index bb347d1..af518bd 100644 --- a/src/lib/elm_genlist.c +++ b/src/lib/elm_genlist.c @@ -7577,8 +7577,7 @@ _elm_genlist_search_by_text_item_get(Eo *obj EINA_UNUSED, EINA_INLIST_FOREACH(start, it) { if (!it->itc->func.text_get) continue; - str = it->itc->func.text_get((void *)it->base.data, - VIEW(it), part_name); + str = it->itc->func.text_get((void *)it->base.data, WIDGET(it), part_name); if (!str) continue; if (!fnmatch(pattern, str, fnflags)) { --
