remove unnecessary method: startApplication; method was moved to LauncherItem
[simple-launcher] / simple-launcher.cc
index 5e31a96..fcc5ff4 100644 (file)
@@ -38,8 +38,6 @@ public:
 private:
   bool initWidget();
 
-  bool startApplication(const std::string& application);
-
 private:
   osso_context_t *myContext;
   GtkWidget *myWidget;
@@ -168,7 +166,3 @@ GtkWidget *SimpleLauncherApplet::settings(GtkWindow *parent) {
   // corresponding dialog appears.
   return 0;
 }
-
-bool SimpleLauncherApplet::startApplication(const std::string& application) {
-  return osso_application_top(myContext, application.c_str(), 0) == OSSO_OK;
-}