fix wrong types / names

This commit is contained in:
Andy Williams 2015-03-25 22:59:42 +00:00
parent 87e2f2b0e8
commit e4164d279d
2 changed files with 5 additions and 3 deletions

View File

@ -43,7 +43,7 @@ _elm_code_test_line_clicked_cb(void *data EINA_UNUSED, Eo *obj EINA_UNUSED,
line = (Elm_Code_Line *)event_info;
printf("CLICKED line %d\n", line->number);
return EINA_TRUE;
return EO_CALLBACK_CONTINUE;
}
static Eina_Bool

View File

@ -44,7 +44,8 @@ END_TEST
START_TEST (elm_code_widget_construct)
{
Elm_Code *code;
Elm_Code_Widget *widget, *win;
Elm_Code_Widget *widget;
Evas_Object *win;
elm_init(1, NULL);
code = elm_code_create();
@ -61,7 +62,8 @@ END_TEST
START_TEST (elm_code_widget_construct_nocode)
{
Elm_Code_Widget *widget, *win;
Elm_Code_Widget *widget;
Evas_Object *win;
elm_init(1, NULL);