call ecore_init() in the CoreRuntime constructor.
[platform/core/dotnet/launcher.git] / NativeLauncher / launcher / main.cc
index 548b2e6..3645320 100644 (file)
@@ -22,7 +22,6 @@
 #include <vector>
 #include <memory>
 
-#include <Ecore.h>
 #include <Eina.h>
 #include <aul.h>
 #include <sys/types.h>
@@ -74,9 +73,6 @@ extern "C" int realMain(int argc, char *argv[], const char* mode)
 
        std::unique_ptr<CoreRuntime> runtime(new CoreRuntime(mode));
 
-       // Intiailize ecore first (signal handlers, etc.) before runtime init.
-       ecore_init();
-
        if (corerunMode) {
                _INFO("##### Run in corerun mode #####");
                char appId[APPID_MAX_LENGTH] = {0,};