fix build break.

eo event interface has been changed.
just updated it.
This commit is contained in:
Hermet Park 2016-04-14 10:48:33 +09:00
parent 6871f68ffc
commit ea16ca83dc
2 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,7 @@ _elm_code_test_line_clicked_cb(void *data EINA_UNUSED, const Eo_Event *event)
{
Elm_Code_Line *line;
line = (Elm_Code_Line *)event->event_info;
line = (Elm_Code_Line *)event->info;
printf("CLICKED line %d\n", line->number);
return EO_CALLBACK_CONTINUE;
@ -49,7 +49,7 @@ _elm_code_test_line_done_cb(void *data EINA_UNUSED, const Eo_Event *event)
{
Elm_Code_Line *line;
line = (Elm_Code_Line *)event->event_info;
line = (Elm_Code_Line *)event->info;
if (line->number == 1)
elm_code_line_token_add(line, 17, 24, 1, ELM_CODE_TOKEN_TYPE_COMMENT);

View File

@ -445,7 +445,7 @@ _elm_code_widget_line_cb(void *data, const Eo_Event *event)
Elm_Code_Widget *widget;
Eina_Bool visible;
line = (Elm_Code_Line *)event->event_info;
line = (Elm_Code_Line *)event->info;
widget = (Elm_Code_Widget *)data;
visible = elm_obj_code_widget_line_visible_get(widget, line);