Remove unused code
authorTomasz Iwanek <t.iwanek@samsung.com>
Fri, 4 Oct 2013 14:37:42 +0000 (16:37 +0200)
committerGerrit Code Review <gerrit@gerrit.vlan144.tizendev.org>
Mon, 7 Oct 2013 06:28:38 +0000 (06:28 +0000)
[Issue#]   LINUXWRT-995
[Problem]  Unused code
[Cause]    N/A
[Solution] Remove it.

[Verification] Build repository.

Change-Id: Icfdf81acbfce565c87f429af93da323be70b86b8

src/wrt-installer/wrt-installer.cpp
src/wrt-installer/wrt-installer.h

index 3a5bcac..c7fb784 100644 (file)
@@ -1068,26 +1068,6 @@ void WrtInstaller::staticWrtUninstallProgressCallback(float percent,
     _D(" progress: %2.0f description: %s", percent, description);
 }
 
-void WrtInstaller::showResultCallback(void *data, Evas_Object* /*obj*/,
-                                      void* /*event_info*/)
-{
-    WrtInstaller *This = static_cast<WrtInstaller*>(data);
-    Assert(This);
-
-    This->DPL::Event::ControllerEventHandler<WRTInstallerNS::NextStepEvent>
-        ::PostEvent(WRTInstallerNS::NextStepEvent());
-}
-
-void WrtInstaller::failResultCallback(void *data, Evas_Object* /*obj*/,
-                                      void* /*event_info*/)
-{
-    WrtInstaller *This = static_cast<WrtInstaller*>(data);
-    Assert(This);
-
-    This->DPL::Event::ControllerEventHandler<WRTInstallerNS::QuitEvent>
-        ::PostEvent(WRTInstallerNS::QuitEvent());
-}
-
 void WrtInstaller::installNewPlugins()
 {
     _D("Install new plugins");
index 6752ea9..e8feefb 100644 (file)
@@ -111,11 +111,6 @@ class WrtInstaller :
                                                    const char* description,
                                                    void* userdata);
 
-    static void showResultCallback(void *data, Evas_Object *obj,
-                                   void *event_info);
-    static void failResultCallback(void *data, Evas_Object *obj,
-                                   void *event_info);
-
     static void staticWrtInitializeToPreloadCallback(std::string tizenId,
                                         WrtErrStatus status,
                                         void* userdata);