From 9a98d6376b3024bea4e07269ab64f85d73de01d6 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Tue, 12 Apr 2016 15:27:38 +0100 Subject: [PATCH] Adjust according to the eo event member changes. --- src/bin/ui.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/bin/ui.c b/src/bin/ui.c index f63c9fe..18ea8d6 100644 --- a/src/bin/ui.c +++ b/src/bin/ui.c @@ -258,7 +258,7 @@ _ui_select(void) static Eina_Bool _ui_key(void *data EINA_UNUSED, const Eo_Event *event) { - Evas_Event_Key_Down *ev = event->event_info; + Evas_Event_Key_Down *ev = event->info; if (key_func) { @@ -297,7 +297,7 @@ static int down_menu_sel = 0; static Eina_Bool _ui_mouse_down(void *data EINA_UNUSED, const Eo_Event *event) { - Evas_Event_Mouse_Down *ev = event->event_info; + Evas_Event_Mouse_Down *ev = event->info; if (ev->button != 1) return EINA_TRUE; if (menu_active) @@ -313,7 +313,7 @@ _ui_mouse_down(void *data EINA_UNUSED, const Eo_Event *event) static Eina_Bool _ui_mouse_up(void *data EINA_UNUSED, const Eo_Event *event) { - Evas_Event_Mouse_Up *ev = event->event_info; + Evas_Event_Mouse_Up *ev = event->info; if (ev->button != 1) return EINA_TRUE; if (menu_active) @@ -338,7 +338,7 @@ _ui_mouse_up(void *data EINA_UNUSED, const Eo_Event *event) static Eina_Bool _ui_mouse_move(void *data EINA_UNUSED, const Eo_Event *event) { - Evas_Event_Mouse_Move *ev = event->event_info; + Evas_Event_Mouse_Move *ev = event->info; if (ev->buttons != 1) return EINA_TRUE; if (menu_active)