elementary: update elementary binary to use efl_exit().

This commit is contained in:
Cedric BAIL 2017-10-11 14:19:44 -07:00
parent 1ff6cbde54
commit 49779d26c4
2 changed files with 5 additions and 5 deletions

View File

@ -151,7 +151,7 @@ config_exit(void *data EINA_UNUSED,
fndata.cur_style = NULL;
elm_config_save();
elm_exit(); /* exit the program's main loop that runs in elm_run() */
efl_exit(); /* exit the program's main loop that runs in elm_run() */
}
static void
@ -4255,7 +4255,7 @@ win_create(void)
static Eina_Bool
_exit_timer(void *data EINA_UNUSED)
{
elm_exit();
efl_exit();
return ECORE_CALLBACK_CANCEL;
}
@ -4360,7 +4360,7 @@ efl_main(void *data EINA_UNUSED, const Efl_Event *ev)
elm_config_all_flush();
if (quiet) elm_exit();
if (quiet) efl_exit();
}
}

View File

@ -361,7 +361,7 @@ _elm_test_add(Eina_List **p_list, const char *icon, const char *category, const
void
my_win_del(void *data EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event_info EINA_UNUSED)
{
elm_exit(); /* exit the program's main loop that runs in elm_run() */
efl_exit(); /* exit the program's main loop that runs in elm_run() */
}
static void
@ -1086,7 +1086,7 @@ add_tests:
free(t);
if (!l)
elm_exit();
efl_exit();
return;
}