aboutsummaryrefslogtreecommitdiffstats
path: root/qt-mobile/qml/CloudCredentials.qml
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2016-01-22 10:19:46 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-01-22 10:19:46 -0800
commit6a4fbecea5fa6db6095c99133dd5fe621607b0d6 (patch)
tree662056c5f4dd565315186ef15db3f39a3fbf5fac /qt-mobile/qml/CloudCredentials.qml
parent60115821a5a25f2b8ec34fce0ed6ea8f1a2283e1 (diff)
downloadsubsurface-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.qml5
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);
- }
-
}
}