diff options
author | 2019-12-20 17:08:42 +0100 | |
---|---|---|
committer | 2019-12-24 10:24:41 -0800 | |
commit | 48bae80577e977fb1f3558e228c0162efdb365ed (patch) | |
tree | 87658b13578d993363988d03cf01c63b1518a47e /mobile-widgets/qmlprefs.h | |
parent | 5af7727ad037e4291e2e7f05684cc1c91ae8edd7 (diff) | |
download | subsurface-48bae80577e977fb1f3558e228c0162efdb365ed.tar.gz |
mobile UI/login: remove cloudPassword from QMLPrefs
cloudPassword is no longer used as a temporary variable
Remove cloudPassword from QMLPrefs.
Signed-off-by: Jan Iversen <jani@apache.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qmlprefs.h')
-rw-r--r-- | mobile-widgets/qmlprefs.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/mobile-widgets/qmlprefs.h b/mobile-widgets/qmlprefs.h index a0c4b85a7..4a792708e 100644 --- a/mobile-widgets/qmlprefs.h +++ b/mobile-widgets/qmlprefs.h @@ -9,10 +9,6 @@ class QMLPrefs : public QObject { Q_OBJECT - Q_PROPERTY(QString cloudPassword - MEMBER m_cloudPassword - WRITE setCloudPassword - NOTIFY cloudPasswordChanged) Q_PROPERTY(QString cloudPin MEMBER m_cloudPin WRITE setCloudPin @@ -35,9 +31,6 @@ public: static QMLPrefs *instance(); - const QString cloudPassword() const; - void setCloudPassword(const QString &cloudPassword); - const QString cloudPin() const; void setCloudPin(const QString &cloudPin); @@ -55,7 +48,6 @@ public slots: void clearCredentials(); private: - QString m_cloudPassword; QString m_cloudPin; qPrefCloudStorage::cloud_status m_credentialStatus; static QMLPrefs *m_instance; @@ -63,7 +55,6 @@ private: bool m_showPin; signals: - void cloudPasswordChanged(); void cloudPinChanged(); void credentialStatusChanged(); void oldStatusChanged(); |