Преглед на файлове

Fix console output to print the correct plugin name.

Sascha Zelzer преди 14 години
родител
ревизия
c1b3e0e4cc
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      Plugins/org.commontk.eventbus/ctkEventBusPlugin.cpp

+ 2 - 2
Plugins/org.commontk.eventbus/ctkEventBusPlugin.cpp

@@ -19,13 +19,13 @@ using namespace QtMobility;
 void ctkEventBusPlugin::start(ctkPluginContext* context)
 {
   Q_UNUSED(context)
-  std::cout << "ctkCore Plugin started\n";
+  std::cout << "org.commontk.eventbus Plugin started\n";
 }
 
 void ctkEventBusPlugin::stop(ctkPluginContext* context)
 {
   Q_UNUSED(context)
-  std::cout << "ctkCore Plugin stopped\n";
+  std::cout << "org.commontk.eventbus Plugin stopped\n";
 }
 
 QObject* ctkEventBusPlugin::createInstance(const QServiceInterfaceDescriptor& descriptor,