summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHwankyu Jhun <h.jhun@samsung.com>2017-07-26 10:53:23 +0900
committerHwanKyu Jhun <h.jhun@samsung.com>2017-07-26 02:00:03 +0000
commit4d2f049a1d46b8024ae8933446673b3945edcaf0 (patch)
treefd2b76d65c553e65c0dbffc8ae7eccd03bdae72a
parent5a4bfb2fff6ca672d946538391371375a0813036 (diff)
downloadapp-core-4d2f049a1d46b8024ae8933446673b3945edcaf0.tar.gz
app-core-4d2f049a1d46b8024ae8933446673b3945edcaf0.tar.bz2
app-core-4d2f049a1d46b8024ae8933446673b3945edcaf0.zip
Fix appcore-ui finalization
Calling the position of the appcore_ui_plugin_fini() is changed. If the platform developer redefines(override) the lifecycle functions by using custom plugin, the function should be called after calling the appcore_base_fini() function. Change-Id: I1af43843724e7676581e3c4e76a032b4ed3e2fe4 Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
-rw-r--r--src/ui_base/appcore_ui_base.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui_base/appcore_ui_base.c b/src/ui_base/appcore_ui_base.c
index 3b55df6..51e3204 100644
--- a/src/ui_base/appcore_ui_base.c
+++ b/src/ui_base/appcore_ui_base.c
@@ -829,8 +829,8 @@ EXPORT_API void appcore_ui_base_fini(void)
free(__context.appid);
__context.appid = NULL;
- appcore_ui_plugin_fini();
appcore_base_fini();
+ appcore_ui_plugin_fini();
ecore_wl_shutdown();
}