diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-01-22 10:19:46 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-01-22 10:19:46 -0800 |
commit | 6a4fbecea5fa6db6095c99133dd5fe621607b0d6 (patch) | |
tree | 662056c5f4dd565315186ef15db3f39a3fbf5fac /qt-mobile/qml/CloudCredentials.qml | |
parent | 60115821a5a25f2b8ec34fce0ed6ea8f1a2283e1 (diff) | |
download | subsurface-6a4fbecea5fa6db6095c99133dd5fe621607b0d6.tar.gz |
QML UI: remove no longer needed debug output
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile/qml/CloudCredentials.qml')
-rw-r--r-- | qt-mobile/qml/CloudCredentials.qml | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/qt-mobile/qml/CloudCredentials.qml b/qt-mobile/qml/CloudCredentials.qml index 54b1e8e92..e574af402 100644 --- a/qt-mobile/qml/CloudCredentials.qml +++ b/qt-mobile/qml/CloudCredentials.qml @@ -59,7 +59,6 @@ Item { checked: false id: showPassword onCheckedChanged: { - console.log("changing password echoMode to " + (checked ? TextInput.Normal : TextInput.Password) + " was " + password.echoMode); password.echoMode = checked ? TextInput.Normal : TextInput.Password } } @@ -96,9 +95,5 @@ Item { Item { Layout.fillHeight: true } - Component.onCompleted: { - console.log("password echoMode is " + password.echoMode); - } - } } |