added Marko's patch to show banner when application is started
authormishas <mikhail.sobolev@gmail.com>
Thu, 24 May 2007 20:56:03 +0000 (20:56 +0000)
committermishas <mikhail.sobolev@gmail.com>
Thu, 24 May 2007 20:56:03 +0000 (20:56 +0000)
git-svn-id: file:///svnroot/simple-launcher/trunk@214 3ba93dab-e023-0410-b42a-de7732cf370a

debian/changelog
launchable-item.cc

index 1c00f5b..8514e41 100644 (file)
@@ -1,3 +1,11 @@
+simple-launcher (0.9.5~1) unstable; urgency=low
+
+  * NOT RELEASED YET
+  * added Marko Nykanen's patch that would use libosso's way to display
+    application start banner
+
+ -- Mikhail Sobolev <mss@mawhrin.net>  Thu, 24 May 2007 23:54:25 +0300
+
 simple-launcher (0.9.4) unstable; urgency=low
 
   * re-arranged the settings dialog
index 53edc67..42bebfc 100644 (file)
@@ -21,7 +21,7 @@
 bool LaunchableItem::activate(osso_context_t *context) {
   bool result = false;
 
-  if (getService().empty() || !(result = osso_application_top(context, getService().c_str(), NULL) == OSSO_OK)) {
+  if (getService().empty() || !(result = osso_rpc_run_with_defaults(context, getService().c_str(), "top_application", NULL, DBUS_TYPE_INVALID) == OSSO_OK)) {
     runApplication(getExec());
     return true;
   } else {