cedric pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=49779d26c4ad5549a3b9a2d3c94279a2b30133e1

commit 49779d26c4ad5549a3b9a2d3c94279a2b30133e1
Author: Cedric BAIL <[email protected]>
Date:   Wed Oct 11 14:19:44 2017 -0700

    elementary: update elementary binary to use efl_exit().
---
 src/bin/elementary/config.c | 6 +++---
 src/bin/elementary/test.c   | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/bin/elementary/config.c b/src/bin/elementary/config.c
index 5529a38345..5c71eae131 100644
--- a/src/bin/elementary/config.c
+++ b/src/bin/elementary/config.c
@@ -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();
      }
 }
 
diff --git a/src/bin/elementary/test.c b/src/bin/elementary/test.c
index 6652716eb3..7fc3d8a78a 100644
--- a/src/bin/elementary/test.c
+++ b/src/bin/elementary/test.c
@@ -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;
      }

-- 


Reply via email to