From: Ruediger Gad Date: Thu, 12 Apr 2012 13:49:22 +0000 (+0200) Subject: Remove debug output. X-Git-Url: https://vcs.maemo.org/git/?p=qzeecontrol;a=commitdiff_plain;h=b200f31e884d51512746c05abc33e0647eff9e29 Remove debug output. --- diff --git a/qml/QZeeControl/MainPage.qml b/qml/QZeeControl/MainPage.qml index 16d7f23..4d78f44 100644 --- a/qml/QZeeControl/MainPage.qml +++ b/qml/QZeeControl/MainPage.qml @@ -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); }