hermet pushed a commit to branch master. http://git.enlightenment.org/tools/expedite.git/commit/?id=46e58922feb270a82a7deea2ba6bc0c777e26e4f
commit 46e58922feb270a82a7deea2ba6bc0c777e26e4f Author: Hermet Park <[email protected]> Date: Mon Oct 10 14:08:30 2016 +0900 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; --
