elfe: Applied recent elm_list changes.

SVN revision: 66825
This commit is contained in:
Daniel Juyung Seo 2012-01-04 01:31:30 +00:00
parent 9e948a55ad
commit 959a0dde09
1 changed files with 2 additions and 2 deletions

View File

@ -8,11 +8,11 @@ static void
_list_longpress(void *data, Evas_Object *obj __UNUSED__, void *event_info)
{
const char *name;
Elm_List_Item *it = event_info;
Elm_Object_Item *it = event_info;
printf("List longpressed\n");
name = elm_list_item_data_get(it);
name = elm_object_item_data_get(it);
evas_object_smart_callback_call(data,
"list,longpressed", (void*)name);