summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml/DiveList.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/DiveList.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/DiveList.qml')
-rw-r--r--mobile-widgets/qml/DiveList.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/DiveList.qml b/mobile-widgets/qml/DiveList.qml
index d353d6995..60d2f5ea1 100644
--- a/mobile-widgets/qml/DiveList.qml
+++ b/mobile-widgets/qml/DiveList.qml
@@ -30,7 +30,7 @@ Kirigami.ScrollablePage {
supportsRefreshing: true
onRefreshingChanged: {
if (refreshing) {
- if (PrefCloudStorage.cloud_verification_status === CloudStatus.CS_VERIFIED) {
+ if (Backend.cloud_verification_status === Enums.CS_VERIFIED) {
detailsWindow.endEditMode()
manager.saveChangesCloud(true)
refreshing = false