소스 검색

Fixed plugin debugging output in plugin tests.

Sascha Zelzer 14 년 전
부모
커밋
1706ec76a9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Libs/PluginFramework/Testing/FrameworkTest/ctkServiceListenerTestSuite.cpp

+ 1 - 1
Libs/PluginFramework/Testing/FrameworkTest/ctkServiceListenerTestSuite.cpp

@@ -524,7 +524,7 @@ void ctkServiceListener::printUsingPlugins(const ctkServiceReference& sr,
   qDebug() << (caption.isEmpty() ? "Using plugins: " : caption);
   foreach(QSharedPointer<ctkPlugin> plugin, usingPlugins)
   {
-    qDebug() << "  -" << plugin;
+    qDebug() << "  -" << plugin.data();
   }
 }