From 6e9ad8a0174bb35bc9776a009dad83d2f4da0da5 Mon Sep 17 00:00:00 2001 From: Daniel Juyung Seo Date: Thu, 1 Dec 2011 08:32:43 +0000 Subject: [PATCH] clouseau, ephoto, ensure: Applied genlist/gengrid changes. label_get -> text_get. SVN revision: 65760 --- src/lib/ui/obj_information.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/ui/obj_information.c b/src/lib/ui/obj_information.c index 7917faf..bab3380 100644 --- a/src/lib/ui/obj_information.c +++ b/src/lib/ui/obj_information.c @@ -67,7 +67,7 @@ item_icon_get(void *data __UNUSED__, Evas_Object *parent __UNUSED__, } static char * -item_label_get(void *data, Evas_Object *obj __UNUSED__, +item_text_get(void *data, Evas_Object *obj __UNUSED__, const char *part __UNUSED__) { Inf_Tree_Item *tit = data; @@ -79,7 +79,7 @@ clouseau_obj_information_list_add(Evas_Object *parent) { prop_list = elm_genlist_add(parent); itc.item_style = "default"; - itc.func.label_get = item_label_get; + itc.func.text_get = item_text_get; itc.func.content_get = item_icon_get; itc.func.state_get = NULL; itc.func.del = NULL;