Removed elm_init and elm_shutdown from ea_init/shutdown. We can not sure about the...
authorWooHyun Jung <wh0705.jung@samsung.com>
Thu, 27 Jun 2013 01:41:06 +0000 (10:41 +0900)
committerSungho Kwak <sungho1.kwak@samsung.com>
Tue, 2 Jul 2013 06:21:15 +0000 (15:21 +0900)
src/lib/efl_assist.c

index 8d92501..b28a21d 100644 (file)
@@ -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();
 }