davemds pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=b3cd928a8e8673cbc593b03da74121d42cf52d9d
commit b3cd928a8e8673cbc593b03da74121d42cf52d9d Author: davemds <[email protected]> Date: Fri Aug 1 17:28:24 2014 +0200 Gengrid: 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_gengrid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elm_gengrid.c b/src/lib/elm_gengrid.c index 03c6d7a..cb5666a 100644 --- a/src/lib/elm_gengrid.c +++ b/src/lib/elm_gengrid.c @@ -136,7 +136,7 @@ _elm_gengrid_search_by_text_item_get(Eo *obj EINA_UNUSED, { if (!it->itc->func.text_get) continue; str = it->itc->func.text_get((void *)it->base.data, - VIEW(it), part_name); + WIDGET(it), part_name); if (!str) continue; if (!fnmatch(pattern, str, fnflags)) { --
