elementary: update elementary binary to use efl_exit().
authorCedric BAIL <cedric@osg.samsung.com>
Wed, 11 Oct 2017 21:19:44 +0000 (14:19 -0700)
committerCedric BAIL <cedric@osg.samsung.com>
Wed, 11 Oct 2017 21:21:12 +0000 (14:21 -0700)
src/bin/elementary/config.c
src/bin/elementary/test.c

index 5529a38..5c71eae 100644 (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();
      }
 }
 
index 6652716..7fc3d8a 100644 (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;
      }