Remove debug output.
authorRuediger Gad <rgad@fb2.fh-frankfurt.de>
Thu, 12 Apr 2012 13:49:22 +0000 (15:49 +0200)
committerRuediger Gad <rgad@fb2.fh-frankfurt.de>
Thu, 12 Apr 2012 13:49:22 +0000 (15:49 +0200)
qml/QZeeControl/MainPage.qml

index 16d7f23..4d78f44 100644 (file)
@@ -159,28 +159,28 @@ Page {
             label.text = "Press to connect."
         }
 
-        onStickMoved: {
-            console.log("Stick moved. x: " + x + " y: " + y)
-        }
+//        onStickMoved: {
+//            console.log("Stick moved. x: " + x + " y: " + y)
+//        }
 
-        onButtonsChanged: {
-            console.log("Buttons changed. A: " + a + " B: " + b + " C: " + c + " D: " + d)
-        }
+//        onButtonsChanged: {
+//            console.log("Buttons changed. A: " + a + " B: " + b + " C: " + c + " D: " + d)
+//        }
 
         onAChanged: {
-            console.log("A changed to: " + val)
+//            console.log("A changed to: " + val)
             xtstAdapter.sendKey("a", val);
         }
         onBChanged: {
-            console.log("B changed to: " + val)
+//            console.log("B changed to: " + val)
             xtstAdapter.sendKey("b", val);
         }
         onCChanged: {
-            console.log("C changed to: " + val)
+//            console.log("C changed to: " + val)
             xtstAdapter.sendKey("c", val);
         }
         onDChanged: {
-            console.log("D changed to: " + val)
+//            console.log("D changed to: " + val)
             xtstAdapter.sendKey("d", val);
         }