summaryrefslogtreecommitdiffstats
path: root/qt-mobile/qml/Preferences.qml
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-11-18 13:12:34 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-11-18 13:12:34 -0800
commit18e52c1da402138a2204419bb008beb7271333bb (patch)
tree8ba70c681a0eb5534a3512cabb26504ae0cb4cd5 /qt-mobile/qml/Preferences.qml
parentddef5650f6ea9db2a8eed38a0147948cd58a7bbd (diff)
downloadsubsurface-18e52c1da402138a2204419bb008beb7271333bb.tar.gz
QML UI: remove manual setting of web service userid
It's just not user friendly to have two different user IDs for two different web services that we provide. Instead in the following commits we'll add a way to retrieve the location service web service userid with your cloud storage user id. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile/qml/Preferences.qml')
-rw-r--r--qt-mobile/qml/Preferences.qml12
1 files changed, 0 insertions, 12 deletions
diff --git a/qt-mobile/qml/Preferences.qml b/qt-mobile/qml/Preferences.qml
index f67f99ff7..59861009c 100644
--- a/qt-mobile/qml/Preferences.qml
+++ b/qt-mobile/qml/Preferences.qml
@@ -80,17 +80,6 @@ Item {
}
Label {
- text: "ID"
- Layout.alignment: Qt.AlignRight
- }
-
- TextField {
- id: userid
- text: manager.ssrfGpsWebUserid
- Layout.fillWidth: true
- }
-
- Label {
text: "Distance threshold (meters)"
Layout.alignment: Qt.AlignRight
}
@@ -124,7 +113,6 @@ Item {
manager.cloudUserName = login.text
manager.cloudPassword = password.text
manager.saveCloudPassword = savePassword.checked
- manager.ssrfGpsWebUserid = userid.text
manager.distanceThreshold = distanceThreshold.text
manager.timeThreshold = timeThreshold.text
manager.savePreferences()