summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml/Settings.qml
diff options
context:
space:
mode:
authorGravatar jan Iversen <jan@casacondor.com>2020-01-05 17:08:48 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2020-01-18 17:35:16 -0800
commit93c3a18db7142e9d6afeed4fde17196776e0d422 (patch)
tree5c1aeebcf0566960d8e593a99880037793925eb3 /mobile-widgets/qml/Settings.qml
parentc93b76eee663d5b000dcd9f0a3e7b4fa12b99b9b (diff)
downloadsubsurface-93c3a18db7142e9d6afeed4fde17196776e0d422.tar.gz
mobile-widgets/qml: use strongly typed CloudStatus
Replace CloudStatus.<value> with backend.<value> as part of making enum sharing between C/C++ and QML more robust. Replace PrefCloudStorage.verification_status with backend.verification_status to use the strongly typed function. Signed-off-by: jan Iversen <jan@casacondor.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml/Settings.qml')
-rw-r--r--mobile-widgets/qml/Settings.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/mobile-widgets/qml/Settings.qml b/mobile-widgets/qml/Settings.qml
index 0af963799..9713a7f15 100644
--- a/mobile-widgets/qml/Settings.qml
+++ b/mobile-widgets/qml/Settings.qml
@@ -45,7 +45,7 @@ Kirigami.ScrollablePage {
color: subsurfaceTheme.textColor
}
Controls.Label {
- text: PrefCloudStorage.cloud_verification_status === CloudStatus.CS_NOCLOUD ? qsTr("Not applicable") : PrefCloudStorage.cloud_storage_email
+ text: Backend.cloud_verification_status === Enums.CS_NOCLOUD ? qsTr("Not applicable") : PrefCloudStorage.cloud_storage_email
font.pointSize: subsurfaceTheme.regularPointSize
Layout.preferredWidth: gridWidth * 0.60
color: subsurfaceTheme.textColor
@@ -54,7 +54,7 @@ Kirigami.ScrollablePage {
id: changeCloudSettings
text: qsTr("Change")
onClicked: {
- PrefCloudStorage.cloud_verification_status = CloudStatus.CS_UNKNOWN
+ Backend.cloud_verification_status = Enums.CS_UNKNOWN
manager.startPageText = qsTr("Starting...");
}
}
@@ -66,7 +66,7 @@ Kirigami.ScrollablePage {
color: subsurfaceTheme.textColor
}
Controls.Label {
- text: describe[PrefCloudStorage.cloud_verification_status]
+ text: describe[Backend.cloud_verification_status]
font.pointSize: subsurfaceTheme.regularPointSize
Layout.preferredWidth: gridWidth * 0.60
Layout.preferredHeight: Kirigami.Units.gridUnit * 1.5