aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar jan Iversen <jan@casacondor.com>2019-12-28 17:11:17 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-12-29 12:20:19 -0800
commitbeacc00f2df2c76b82f398ff839a18a9b404e1a5 (patch)
treeaff31a274befcad66815e030bea753efc3f18de6
parentb7730d3813bf6c31b87679ca1783c3e4223fe9d9 (diff)
downloadsubsurface-beacc00f2df2c76b82f398ff839a18a9b404e1a5.tar.gz
mobile-widgets: remove m_cloudCredentialStatus in qmlpref
Remove m_credentialStatus in qmlpref, but let the setter/getter stay, using qPrefCloudStorage::cloud_verification_status() instead. This change ensures that qmlPrefs:credentialStatus() returns the same as qPrefCloudStorage::cloud_verification_status(), and the setter/getter of credentialStatus can later be removed safely. This is a "checkpoint" to ensure everything works without a temporary credentialStatus. No code part depend on the difference between qmlPrefs::credentialStatus() and qPrefCloudStorage::cloud_verification_status(), but the code reference both. Signed-off-by: Jan Iversen <jan@casacondor.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--mobile-widgets/qmlprefs.cpp9
-rw-r--r--mobile-widgets/qmlprefs.h3
2 files changed, 5 insertions, 7 deletions
diff --git a/mobile-widgets/qmlprefs.cpp b/mobile-widgets/qmlprefs.cpp
index f88c9a732..c48327faa 100644
--- a/mobile-widgets/qmlprefs.cpp
+++ b/mobile-widgets/qmlprefs.cpp
@@ -11,7 +11,6 @@
QMLPrefs *QMLPrefs::m_instance = NULL;
QMLPrefs::QMLPrefs() :
- m_credentialStatus(qPrefCloudStorage::CS_UNKNOWN),
m_oldStatus(qPrefCloudStorage::CS_UNKNOWN),
m_showPin(false)
{
@@ -36,13 +35,13 @@ QMLPrefs *QMLPrefs::instance()
qPrefCloudStorage::cloud_status QMLPrefs::credentialStatus() const
{
- return m_credentialStatus;
+ return (qPrefCloudStorage::cloud_status)qPrefCloudStorage::cloud_verification_status();
}
void QMLPrefs::setCredentialStatus(const qPrefCloudStorage::cloud_status value)
{
- if (m_credentialStatus != value) {
- setOldStatus(m_credentialStatus);
+ if ((qPrefCloudStorage::cloud_status)qPrefCloudStorage::cloud_verification_status() != value) {
+ setOldStatus((qPrefCloudStorage::cloud_status)qPrefCloudStorage::cloud_verification_status());
if (value == qPrefCloudStorage::CS_NOCLOUD) {
QMLManager::instance()->appendTextToLog("Switching to no cloud mode");
set_filename(NOCLOUD_LOCALSTORAGE);
@@ -53,7 +52,7 @@ void QMLPrefs::setCredentialStatus(const qPrefCloudStorage::cloud_status value)
else if (qPrefUnits::unit_system() == "metric")
prefs.units = SI_units;
}
- m_credentialStatus = value;
+ qPrefCloudStorage::set_cloud_verification_status(value);
emit credentialStatusChanged();
}
}
diff --git a/mobile-widgets/qmlprefs.h b/mobile-widgets/qmlprefs.h
index 61e26fd4c..9f5673329 100644
--- a/mobile-widgets/qmlprefs.h
+++ b/mobile-widgets/qmlprefs.h
@@ -10,7 +10,7 @@
class QMLPrefs : public QObject {
Q_OBJECT
Q_PROPERTY(qPrefCloudStorage::cloud_status credentialStatus
- MEMBER m_credentialStatus
+ READ credentialStatus
WRITE setCredentialStatus
NOTIFY credentialStatusChanged)
Q_PROPERTY(bool showPin
@@ -37,7 +37,6 @@ public:
void setShowPin(bool enable);
private:
- qPrefCloudStorage::cloud_status m_credentialStatus;
static QMLPrefs *m_instance;
qPrefCloudStorage::cloud_status m_oldStatus;
bool m_showPin;