diff data/osc/OSCQueue.cpp @ 686:b4a8d8221eaf debug-output

Remove most toStdString calls (no longer needed, with debug header)
author Chris Cannam
date Thu, 12 May 2011 17:31:24 +0100
parents d7f3dfe6f9a4
children 06f13a3b9e9e
line wrap: on
line diff
--- a/data/osc/OSCQueue.cpp	Thu May 12 16:56:08 2011 +0100
+++ b/data/osc/OSCQueue.cpp	Thu May 12 17:31:24 2011 +0100
@@ -180,7 +180,7 @@
     m_buffer.write(&mp, 1);
     std::cerr << "OSCQueue::postMessage: Posted OSC message: target "
               << message.getTarget() << ", target data " << message.getTargetData()
-              << ", method " << message.getMethod().toStdString() << std::endl;
+              << ", method " << message.getMethod() << std::endl;
     emit messagesAvailable();
 }
 
@@ -213,7 +213,7 @@
 
     if (method.contains('/')) {
         std::cerr << "ERROR: OSCQueue::parseOSCPath: malformed path \""
-                  << path.toStdString() << "\" (should be target/data/method or "
+                  << path << "\" (should be target/data/method or "
                   << "target/method or method, where target and data "
                   << "are numeric)" << std::endl;
         return false;