diff options
| author | 2019-12-20 16:35:12 +0100 | |
|---|---|---|
| committer | 2019-12-24 10:22:39 -0800 | |
| commit | ac28896a5d448a918843b4dc34afdf3e1e35e245 (patch) | |
| tree | 1f2aa2082763761adeef2f502473d341deee0068 /mobile-widgets/qml/StartPage.qml | |
| parent | 4b713ece96a435f92589afcf89e3d93c37dfcbd8 (diff) | |
| download | subsurface-ac28896a5d448a918843b4dc34afdf3e1e35e245.tar.gz | |
mobile UI/login: replace use of cloudUserName
Replace prefs.cloudUserName with PrefCloudStorage.cloud_storage_email in QML
Replace QMLPrefs.....cloudUserName with PrefCloudStorage::cloud_storage_email in C++
Signed-off-by: Jan Iversen <jani@apache.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml/StartPage.qml')
| -rw-r--r-- | mobile-widgets/qml/StartPage.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/StartPage.qml b/mobile-widgets/qml/StartPage.qml index 9c5e1a22c..5b6a82bb0 100644 --- a/mobile-widgets/qml/StartPage.qml +++ b/mobile-widgets/qml/StartPage.qml @@ -50,7 +50,7 @@ Kirigami.ScrollablePage { "If you do not receive an email from us within 15 minutes, please check " + "the correct spelling of your email address and your spam box first.<br/><br/>" + "In case of any problems regarding cloud account setup, please contact us " + - "at our user forum \(https://subsurface-divelog.org/user-forum/\).<br/><br/>").arg(prefs.cloudUserName) + "at our user forum \(https://subsurface-divelog.org/user-forum/\).<br/><br/>").arg(PrefCloudStorage.cloud_storage_email) wrapMode: Text.WordWrap } Item { width: Kirigami.Units.gridUnit; height: 3 * Kirigami.Units.gridUnit} |