summaryrefslogtreecommitdiff
path: root/src/tests/elm_test_genlist.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/elm_test_genlist.c')
-rw-r--r--src/tests/elm_test_genlist.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/tests/elm_test_genlist.c b/src/tests/elm_test_genlist.c
index 5d23930f2..614fda9cc 100644
--- a/src/tests/elm_test_genlist.c
+++ b/src/tests/elm_test_genlist.c
@@ -81,14 +81,13 @@ START_TEST(elm_atspi_children_get2)
END_TEST
static Eina_Bool
-_children_changed_cb(void *data EINA_UNUSED, Eo *obj EINA_UNUSED,
- const Eo_Event_Description *desc, void *event_info EINA_UNUSED)
+_children_changed_cb(void *data EINA_UNUSED, const Eo_Event *event)
{
- if (desc != ELM_INTERFACE_ATSPI_ACCESSIBLE_EVENT_CHILDREN_CHANGED)
+ if (event->desc != ELM_INTERFACE_ATSPI_ACCESSIBLE_EVENT_CHILDREN_CHANGED)
return EINA_TRUE;
- ev_data = *(Elm_Atspi_Event_Children_Changed_Data*)event_info;
- current = obj;
+ ev_data = *(Elm_Atspi_Event_Children_Changed_Data*)event->event_info;
+ current = event->obj;
counter++;
return EINA_TRUE;