ui: fix all eo_event syntax changes.

Eo_Event -> Efl_Event
This commit is contained in:
Hermet Park 2016-10-10 14:08:30 +09:00
parent 19657b6d25
commit 46e58922fe
1 changed files with 4 additions and 4 deletions

View File

@ -256,7 +256,7 @@ _ui_select(void)
} }
static 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; Efl_Input_Key *ev = event->info;
const char *keyname = efl_input_key_name_get(ev); 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 int down_menu_sel = 0;
static void 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; Efl_Input_Pointer *ev = event->info;
@ -311,7 +311,7 @@ _ui_mouse_down(void *data EINA_UNUSED, const Eo_Event *event)
} }
static void 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; Efl_Input_Pointer *ev = event->info;
@ -335,7 +335,7 @@ _ui_mouse_up(void *data EINA_UNUSED, const Eo_Event *event)
} }
static void 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; Efl_Input_Pointer *ev = event->info;