summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWooHyun Jung <wh0705.jung@samsung.com>2013-06-27 10:41:06 +0900
committerSungho Kwak <sungho1.kwak@samsung.com>2013-07-02 15:21:15 +0900
commit3cd53d6820b7bb18d67bf4b612c02156bd5948dd (patch)
treeb3e9d548595a0628bc14bc21ad3a417fe05176db
parent1d8c4302a054affdbec1f22cf41c9416d162ca98 (diff)
downloadefl-assist-3cd53d6820b7bb18d67bf4b612c02156bd5948dd.tar.gz
efl-assist-3cd53d6820b7bb18d67bf4b612c02156bd5948dd.tar.bz2
efl-assist-3cd53d6820b7bb18d67bf4b612c02156bd5948dd.zip
Removed elm_init and elm_shutdown from ea_init/shutdown. We can not sure about the timing of ea_mod_shoudown, so elm_shutdown can cause some unexpeced problems.
-rw-r--r--src/lib/efl_assist.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/lib/efl_assist.c b/src/lib/efl_assist.c
index 8d92501..b28a21d 100644
--- a/src/lib/efl_assist.c
+++ b/src/lib/efl_assist.c
@@ -74,11 +74,6 @@ _magic_string_get(ea_magic m)
__CONSTRUCTOR__ static void
ea_mod_init(void)
{
- if (!elm_init(0, NULL)) {
- fprintf(stderr, "could not initialize elementary.\n");
- return;
- }
-
ea_init();
DBG("loaded");
@@ -90,7 +85,6 @@ ea_mod_shutdown(void)
DBG("unloaded");
ea_shutdown();
- elm_shutdown();
}