summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Hacohen <tom@stosb.com>2016-03-03 13:44:07 +0000
committerTom Hacohen <tom@stosb.com>2016-03-03 13:44:07 +0000
commitc63ee44cfc888016691c72d7fc1c934fffe860f3 (patch)
tree1a6b53c52c8fbf5398152a5c8874a8a3febe0617 /src
parent7b3fa8abc46ca049f2ddb335ba33d2d8f32cf963 (diff)
downloadelementary-c63ee44cfc888016691c72d7fc1c934fffe860f3.tar.gz
Genlist test: Adjust according to the recent eo event changes.
Thanks to zmike for letting me know.
Diffstat (limited to 'src')
-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;