hermet pushed a commit to branch master. http://git.enlightenment.org/tools/edi.git/commit/?id=6fc4e26c44cd62580064f1e1cc3cfda01a27c6ef
commit 6fc4e26c44cd62580064f1e1cc3cfda01a27c6ef Author: Hermet Park <[email protected]> Date: Thu Apr 14 10:48:33 2016 +0900 fix build break. eo event interface has been changed. just updated it. --- elm_code/src/bin/elm_code_test_main.c | 4 ++-- elm_code/src/lib/widget/elm_code_widget.c | 2 +- src/bin/edi_consolepanel.c | 6 +++--- src/bin/edi_logpanel.c | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/elm_code/src/bin/elm_code_test_main.c b/elm_code/src/bin/elm_code_test_main.c index b4bcf30..a1840a6 100644 --- a/elm_code/src/bin/elm_code_test_main.c +++ b/elm_code/src/bin/elm_code_test_main.c @@ -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); diff --git a/elm_code/src/lib/widget/elm_code_widget.c b/elm_code/src/lib/widget/elm_code_widget.c index abb766b..6433f2d 100644 --- a/elm_code/src/lib/widget/elm_code_widget.c +++ b/elm_code/src/lib/widget/elm_code_widget.c @@ -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); diff --git a/src/bin/edi_consolepanel.c b/src/bin/edi_consolepanel.c index a64490e..1d5eac6 100644 --- a/src/bin/edi_consolepanel.c +++ b/src/bin/edi_consolepanel.c @@ -91,7 +91,7 @@ _edi_consolepanel_clicked_cb(void *data EINA_UNUSED, const Eo_Event *event) char *path, *terminated; unsigned int length; - line = (Elm_Code_Line *)event->event_info; + line = (Elm_Code_Line *)event->info; content = elm_code_line_text_get(line, &length); terminated = malloc(sizeof(char) * (length + 1)); @@ -118,7 +118,7 @@ _edi_consolepanel_line_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->data) line->status = ELM_CODE_STATUS_TYPE_ERROR; @@ -274,7 +274,7 @@ _edi_testpanel_line_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->data) return EO_CALLBACK_CONTINUE; diff --git a/src/bin/edi_logpanel.c b/src/bin/edi_logpanel.c index e2730dd..c493710 100644 --- a/src/bin/edi_logpanel.c +++ b/src/bin/edi_logpanel.c @@ -51,7 +51,7 @@ _edi_logpanel_line_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->data) line->status = ELM_CODE_STATUS_TYPE_ERROR; --
