diff options
author | 2019-12-20 17:04:28 +0100 | |
---|---|---|
committer | 2019-12-24 10:24:15 -0800 | |
commit | 5af7727ad037e4291e2e7f05684cc1c91ae8edd7 (patch) | |
tree | 8e22244e623fba057a3519b74b32a78c2c16582c /mobile-widgets/qml | |
parent | a97cc834588b82fd4d68685f3644fd2b27094b07 (diff) | |
download | subsurface-5af7727ad037e4291e2e7f05684cc1c91ae8edd7.tar.gz |
mobile UI/login: replace use of cloudPassword
Replace prefs.cloudPassword with PrefCloudStorage.cloud_storage_password in QML
Replace QMLPrefs.....cloudPassword with PrefCloudStorage::cloud_storage_password in C++
Signed-off-by: Jan Iversen <jani@apache.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml')
-rw-r--r-- | mobile-widgets/qml/CloudCredentials.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/CloudCredentials.qml b/mobile-widgets/qml/CloudCredentials.qml index 502d15af2..335645cbc 100644 --- a/mobile-widgets/qml/CloudCredentials.qml +++ b/mobile-widgets/qml/CloudCredentials.qml @@ -74,7 +74,7 @@ Item { Controls.TextField { id: password - text: prefs.cloudPassword + text: PrefCloudStorage.cloud_storage_password visible: !rootItem.showPin echoMode: TextInput.PasswordEchoOnEdit inputMethodHints: Qt.ImhSensitiveData | |