diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-03-24 21:42:20 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-03-24 21:42:20 -0700 |
commit | d99c9312195c2d5b867fa85e7b5aae8530fbf9b9 (patch) | |
tree | 57dc3954a1ec200b00e6ce6e9bd5d4e4fdf8cbc6 /qt-mobile/qmlmanager.h | |
parent | 246422d03fb3db1146eda1e77bfe2796f686f49c (diff) | |
download | subsurface-d99c9312195c2d5b867fa85e7b5aae8530fbf9b9.tar.gz |
QML UI: remove the checkbox for remembering the password
In the context of the mobile app this simply makes no sense. If the user
doesn't select this option, the app doesn't really work. So why have the option
in the first place?
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile/qmlmanager.h')
-rw-r--r-- | qt-mobile/qmlmanager.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/qt-mobile/qmlmanager.h b/qt-mobile/qmlmanager.h index 01ccf0303..ae30d5884 100644 --- a/qt-mobile/qmlmanager.h +++ b/qt-mobile/qmlmanager.h @@ -13,7 +13,6 @@ class QMLManager : public QObject { Q_ENUMS(credentialStatus_t) Q_PROPERTY(QString cloudUserName READ cloudUserName WRITE setCloudUserName NOTIFY cloudUserNameChanged) Q_PROPERTY(QString cloudPassword READ cloudPassword WRITE setCloudPassword NOTIFY cloudPasswordChanged) - Q_PROPERTY(bool saveCloudPassword READ saveCloudPassword WRITE setSaveCloudPassword NOTIFY saveCloudPasswordChanged) Q_PROPERTY(QString logText READ logText WRITE setLogText NOTIFY logTextChanged) Q_PROPERTY(bool locationServiceEnabled READ locationServiceEnabled WRITE setLocationServiceEnabled NOTIFY locationServiceEnabledChanged) Q_PROPERTY(int distanceThreshold READ distanceThreshold WRITE setDistanceThreshold NOTIFY distanceThresholdChanged) @@ -44,9 +43,6 @@ public: QString cloudPassword() const; void setCloudPassword(const QString &cloudPassword); - bool saveCloudPassword() const; - void setSaveCloudPassword(bool saveCloudPassword); - bool locationServiceEnabled() const; void setLocationServiceEnabled(bool locationServiceEnable); @@ -125,7 +121,6 @@ private: QString m_cloudPassword; QString m_ssrfGpsWebUserid; QString m_startPageText; - bool m_saveCloudPassword; QString m_logText; bool m_locationServiceEnabled; bool m_verboseEnabled; @@ -145,7 +140,6 @@ private: signals: void cloudUserNameChanged(); void cloudPasswordChanged(); - void saveCloudPasswordChanged(); void locationServiceEnabledChanged(); void verboseEnabledChanged(); void logTextChanged(); |