X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=adaptors%2Fcommon%2Fapplication-impl.cpp;h=bdc62688b3c9b21f1e32d5d22dbb70ed5b14f089;hb=f99a48ab0bfb8a45cd7376c7e9f5b7c8ba1f2ec4;hp=db48c4148eac0dcf18f87624db01e32fdfc18036;hpb=600ba58364dfdd21c1c283cd0fa6b515e59bf015;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/adaptors/common/application-impl.cpp b/adaptors/common/application-impl.cpp index db48c41..bdc6268 100644 --- a/adaptors/common/application-impl.cpp +++ b/adaptors/common/application-impl.cpp @@ -28,11 +28,6 @@ #include #include -// CONDITIONAL INCLUDES -#ifdef DALI_ELDBUS_AVAILABLE -#include -#endif // DALI_ELDBUS_AVAILABLE - namespace Dali { @@ -52,13 +47,6 @@ namespace Internal namespace Adaptor { -#if defined(DEBUG_ENABLED) -namespace -{ -Integration::Log::Filter* gDBusLogging = Integration::Log::Filter::New( Debug::NoLogging, false, "LOG_ADAPTOR_EVENTS_DBUS" ); -} // anonymous namespace -#endif - ApplicationPtr Application::New( int* argc, char **argv[], @@ -117,12 +105,6 @@ Application::~Application() delete mCommandLineOptions; delete mAdaptor; -#ifdef DALI_ELDBUS_AVAILABLE - // Shutdown ELDBus. - DALI_LOG_INFO( gDBusLogging, Debug::General, "Shutting down DBus\n" ); - eldbus_shutdown(); -#endif - mWindow.Reset(); } @@ -193,12 +175,6 @@ void Application::OnInit() CreateWindow(); -#ifdef DALI_ELDBUS_AVAILABLE - // Initialize ElDBus. - DALI_LOG_INFO( gDBusLogging, Debug::General, "Starting DBus Initialization\n" ); - eldbus_init(); -#endif - // Start the adaptor CreateAdaptor(); mAdaptor->Start();