replaced 0 with NULL where appropriate: shut the compiler up
[simple-launcher] / launchable-item.cc
index b8cae0a..4f0902a 100644 (file)
@@ -18,7 +18,7 @@
 #include "launchable-item.h"
 
 bool LaunchableItem::activate(osso_context_t *context) {
-  return osso_application_top(context, getService().c_str(), 0) == OSSO_OK;
+  return osso_application_top(context, getService().c_str(), NULL) == OSSO_OK;
 }
 
 // vim:ts=2:sw=2:et