diff options
author | jan Iversen <jan@casacondor.com> | 2019-12-20 16:50:52 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-12-24 10:23:11 -0800 |
commit | a97cc834588b82fd4d68685f3644fd2b27094b07 (patch) | |
tree | e313ef8d724d99ba1d3a7b99d2240b34f3b52a46 | |
parent | ac28896a5d448a918843b4dc34afdf3e1e35e245 (diff) | |
download | subsurface-a97cc834588b82fd4d68685f3644fd2b27094b07.tar.gz |
mobile UI/login: remove cloudUserName from QMLPrefs
cloudUserName is no longer used as a temporary variable.
Signed-off-by: Jan Iversen <jani@apache.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | mobile-widgets/qmlprefs.cpp | 13 | ||||
-rw-r--r-- | mobile-widgets/qmlprefs.h | 9 |
2 files changed, 1 insertions, 21 deletions
diff --git a/mobile-widgets/qmlprefs.cpp b/mobile-widgets/qmlprefs.cpp index 47caef005..96b3f1366 100644 --- a/mobile-widgets/qmlprefs.cpp +++ b/mobile-widgets/qmlprefs.cpp @@ -55,17 +55,6 @@ void QMLPrefs::setCloudPin(const QString &cloudPin) emit cloudPinChanged(); } -const QString QMLPrefs::cloudUserName() const -{ - return m_cloudUserName; -} - -void QMLPrefs::setCloudUserName(const QString &cloudUserName) -{ - m_cloudUserName = cloudUserName.toLower(); - emit cloudUserNameChanged(); -} - qPrefCloudStorage::cloud_status QMLPrefs::credentialStatus() const { return m_credentialStatus; @@ -140,7 +129,7 @@ void QMLPrefs::cancelCredentialsPinSetup() void QMLPrefs::clearCredentials() { - setCloudUserName(NULL); + qPrefCloudStorage::set_cloud_storage_email(NULL); setCloudPassword(NULL); setCloudPin(NULL); } diff --git a/mobile-widgets/qmlprefs.h b/mobile-widgets/qmlprefs.h index 99819fd7c..a0c4b85a7 100644 --- a/mobile-widgets/qmlprefs.h +++ b/mobile-widgets/qmlprefs.h @@ -17,10 +17,6 @@ class QMLPrefs : public QObject { MEMBER m_cloudPin WRITE setCloudPin NOTIFY cloudPinChanged) - Q_PROPERTY(QString cloudUserName - MEMBER m_cloudUserName - WRITE setCloudUserName - NOTIFY cloudUserNameChanged) Q_PROPERTY(qPrefCloudStorage::cloud_status credentialStatus MEMBER m_credentialStatus WRITE setCredentialStatus @@ -45,9 +41,6 @@ public: const QString cloudPin() const; void setCloudPin(const QString &cloudPin); - const QString cloudUserName() const; - void setCloudUserName(const QString &cloudUserName); - qPrefCloudStorage::cloud_status credentialStatus() const; void setCredentialStatus(const qPrefCloudStorage::cloud_status value); @@ -64,7 +57,6 @@ public slots: private: QString m_cloudPassword; QString m_cloudPin; - QString m_cloudUserName; qPrefCloudStorage::cloud_status m_credentialStatus; static QMLPrefs *m_instance; qPrefCloudStorage::cloud_status m_oldStatus; @@ -73,7 +65,6 @@ private: signals: void cloudPasswordChanged(); void cloudPinChanged(); - void cloudUserNameChanged(); void credentialStatusChanged(); void oldStatusChanged(); void showPinChanged(); |