diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-09-10 06:30:01 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-09-10 16:26:49 -0700 |
commit | ae653703a5d3ff1da84053d4542420fc70325c5f (patch) | |
tree | 3c93c581dc3d7a2209b7dc021d14515c34b75c04 /core/settings | |
parent | 6e4a2538968d945d471489270136c4891b47b270 (diff) | |
download | subsurface-ae653703a5d3ff1da84053d4542420fc70325c5f.tar.gz |
prefs: git_local_only is not a preference
It's the current state of the app, so it should be a global variable, not a
preference.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/settings')
-rw-r--r-- | core/settings/qPrefCloudStorage.cpp | 3 | ||||
-rw-r--r-- | core/settings/qPrefCloudStorage.h | 5 |
2 files changed, 0 insertions, 8 deletions
diff --git a/core/settings/qPrefCloudStorage.cpp b/core/settings/qPrefCloudStorage.cpp index dfb9c435b..4576de6fb 100644 --- a/core/settings/qPrefCloudStorage.cpp +++ b/core/settings/qPrefCloudStorage.cpp @@ -23,7 +23,6 @@ void qPrefCloudStorage::loadSync(bool doSync) disk_cloud_storage_pin(doSync); disk_cloud_timeout(doSync); disk_cloud_verification_status(doSync); - disk_git_local_only(doSync); disk_save_password_local(doSync); disk_save_userid_local(doSync); disk_userid(doSync); @@ -92,8 +91,6 @@ HANDLE_PREFERENCE_INT(CloudStorage, "timeout", cloud_timeout); HANDLE_PREFERENCE_INT(CloudStorage, "cloud_verification_status", cloud_verification_status); -HANDLE_PREFERENCE_BOOL(CloudStorage, "git_local_only", git_local_only); - HANDLE_PREFERENCE_BOOL(CloudStorage, "save_password_local", save_password_local); HANDLE_PREFERENCE_BOOL(CloudStorage, "save_userid_local", save_userid_local); diff --git a/core/settings/qPrefCloudStorage.h b/core/settings/qPrefCloudStorage.h index 91864afbc..f9a08372f 100644 --- a/core/settings/qPrefCloudStorage.h +++ b/core/settings/qPrefCloudStorage.h @@ -16,7 +16,6 @@ class qPrefCloudStorage : public QObject { Q_PROPERTY(QString cloud_storage_pin READ cloud_storage_pin WRITE set_cloud_storage_pin NOTIFY cloud_storage_pin_changed); Q_PROPERTY(int cloud_verification_status READ cloud_verification_status WRITE set_cloud_verification_status NOTIFY cloud_verification_status_changed); Q_PROPERTY(int cloud_timeout READ cloud_timeout WRITE set_cloud_timeout NOTIFY cloud_timeout_changed); - Q_PROPERTY(bool git_local_only READ git_local_only WRITE set_git_local_only NOTIFY git_local_only_changed); Q_PROPERTY(bool save_password_local READ save_password_local WRITE set_save_password_local NOTIFY save_password_local_changed); Q_PROPERTY(bool save_userid_local READ save_userid_local WRITE set_save_userid_local NOTIFY save_userid_local_changed); Q_PROPERTY(QString userid READ userid WRITE set_userid NOTIFY userid_changed); @@ -40,7 +39,6 @@ public: static QString cloud_storage_pin() { return prefs.cloud_storage_pin; } static int cloud_timeout() { return prefs.cloud_timeout; } static int cloud_verification_status() { return prefs.cloud_verification_status; } - static bool git_local_only() { return prefs.git_local_only; } static bool save_password_local() { return prefs.save_password_local; } static bool save_userid_local() { return prefs.save_userid_local; } static QString userid() { return prefs.userid; } @@ -54,7 +52,6 @@ public slots: static void set_cloud_storage_pin(const QString &value); static void set_cloud_timeout(int value); static void set_cloud_verification_status(int value); - static void set_git_local_only(bool value); static void set_save_password_local(bool value); static void set_save_userid_local(bool value); static void set_userid(const QString &value); @@ -68,7 +65,6 @@ signals: void cloud_storage_pin_changed(const QString &value); void cloud_timeout_changed(int value); void cloud_verification_status_changed(int value); - void git_local_only_changed(bool value); void save_password_local_changed(bool value); void save_userid_local_changed(bool value); void userid_changed(const QString &value); @@ -83,7 +79,6 @@ private: static void disk_cloud_storage_pin(bool doSync); static void disk_cloud_timeout(bool doSync); static void disk_cloud_verification_status(bool doSync); - static void disk_git_local_only(bool doSync); static void disk_save_password_local(bool doSync); static void disk_save_userid_local(bool doSync); static void disk_userid(bool doSync); |