From 46e58922feb270a82a7deea2ba6bc0c777e26e4f Mon Sep 17 00:00:00 2001 From: Hermet Park Date: Mon, 10 Oct 2016 14:08:30 +0900 Subject: [PATCH] ui: fix all eo_event syntax changes. Eo_Event -> Efl_Event --- 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 4018f35..cdb3a33 100644 --- a/src/bin/ui.c +++ b/src/bin/ui.c @@ -256,7 +256,7 @@ _ui_select(void) } static void -_ui_key(void *data EINA_UNUSED, const Eo_Event *event) +_ui_key(void *data EINA_UNUSED, const Efl_Event *event) { Efl_Input_Key *ev = event->info; const char *keyname = efl_input_key_name_get(ev); @@ -298,7 +298,7 @@ static Evas_Coord down_x, down_y; static int down_menu_sel = 0; static void -_ui_mouse_down(void *data EINA_UNUSED, const Eo_Event *event) +_ui_mouse_down(void *data EINA_UNUSED, const Efl_Event *event) { Efl_Input_Pointer *ev = event->info; @@ -311,7 +311,7 @@ _ui_mouse_down(void *data EINA_UNUSED, const Eo_Event *event) } static void -_ui_mouse_up(void *data EINA_UNUSED, const Eo_Event *event) +_ui_mouse_up(void *data EINA_UNUSED, const Efl_Event *event) { Efl_Input_Pointer *ev = event->info; @@ -335,7 +335,7 @@ _ui_mouse_up(void *data EINA_UNUSED, const Eo_Event *event) } static void -_ui_mouse_move(void *data EINA_UNUSED, const Eo_Event *event) +_ui_mouse_move(void *data EINA_UNUSED, const Efl_Event *event) { Efl_Input_Pointer *ev = event->info;