Ver código fonte

Fixed typo in debug message.

Sascha Zelzer 13 anos atrás
pai
commit
c3d790ce76

+ 2 - 2
Libs/PluginFramework/Testing/EventAdminTest/ctkEAScenario3TestSuite.cpp

@@ -87,7 +87,7 @@ void ctkEAScenario3EventConsumer::handleEvent(const ctkEvent& event)
     {
       /* its an asyncronous message */
       synchMessages++;
-      qDebug() << "recived a Synchronous event with message:" << message;
+      qDebug() << "received a Synchronous event with message:" << message;
     }
     else
     {
@@ -95,7 +95,7 @@ void ctkEAScenario3EventConsumer::handleEvent(const ctkEvent& event)
       if (!message.isNull())
       {
         asynchMessages++;
-        qDebug() << "recived an Asynchronus event with message:" << message;
+        qDebug() << "received an Asynchronus event with message:" << message;
       }
     }
 

+ 2 - 2
Libs/PluginFramework/Testing/EventAdminTest/ctkEAScenario4TestSuite.cpp

@@ -93,7 +93,7 @@ void ctkEAScenario4EventConsumer::handleEvent(const ctkEvent& event)
     {
       /* its an asyncronous message */
       synchMessages++;
-      qDebug() << "recived a Synchronous event with message:" << message;
+      qDebug() << "received a Synchronous event with message:" << message;
     }
     else
     {
@@ -101,7 +101,7 @@ void ctkEAScenario4EventConsumer::handleEvent(const ctkEvent& event)
       if (!message.isNull())
       {
         asynchMessages++;
-        qDebug() << "recived an Asynchronus event with message:" << message;
+        qDebug() << "received an Asynchronus event with message:" << message;
       }
     }