diff data/osc/OSCQueue.cpp @ 1450:a12fd0456f0c streaming-csv-writer

Merge from default branch
author Chris Cannam
date Tue, 17 Apr 2018 10:35:42 +0100
parents 48e9f538e6e9
children 70e172e6cc59
line wrap: on
line diff
--- a/data/osc/OSCQueue.cpp	Tue Apr 17 10:03:51 2018 +0100
+++ b/data/osc/OSCQueue.cpp	Tue Apr 17 10:35:42 2018 +0100
@@ -34,7 +34,7 @@
 OSCQueue::oscError(int num, const char *msg, const char *path)
 {
     cerr << "ERROR: OSCQueue::oscError: liblo server error " << num
-	      << " in path " << path << ": " << msg << endl;
+              << " in path " << path << ": " << msg << endl;
 }
 
 int
@@ -48,7 +48,7 @@
     QString method;
 
     if (!queue->parseOSCPath(path, target, targetData, method)) {
-	return 1;
+        return 1;
     }
 
     OSCMessage message;
@@ -80,7 +80,7 @@
             break;
         }
 
-	++i;
+        ++i;
     }
 
     queue->postMessage(message);
@@ -190,7 +190,7 @@
                        QString &method)
 {
     while (path.startsWith("/")) {
-	path = path.right(path.length()-1);
+        path = path.right(path.length()-1);
     }
 
     int i = 0;