Adjust according to the eo event member changes.

This commit is contained in:
Tom Hacohen 2016-04-12 15:27:38 +01:00
parent 185fe20e88
commit 9a98d6376b
1 changed files with 4 additions and 4 deletions

View File

@ -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)