mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
core: update qPrefCloudStorage to new consensus
make load/sync inline remove const from QString getters Signed-off-by: Jan Iversen <jani@apache.org>
This commit is contained in:
parent
5f3471bf86
commit
8cfe048150
1 changed files with 10 additions and 10 deletions
|
@ -27,23 +27,23 @@ public:
|
|||
|
||||
// Load/Sync local settings (disk) and struct preference
|
||||
void loadSync(bool doSync);
|
||||
void load() { loadSync(false); }
|
||||
void sync() { loadSync(true); }
|
||||
void inline load() { loadSync(false); }
|
||||
void inline sync() { loadSync(true); }
|
||||
|
||||
public:
|
||||
static inline const QString cloud_base_url() { return prefs.cloud_base_url; }
|
||||
static inline const QString cloud_git_url() { return prefs.cloud_git_url; }
|
||||
static inline const QString cloud_storage_email() { return prefs.cloud_storage_email; }
|
||||
static inline const QString cloud_storage_email_encoded() { return prefs.cloud_storage_email_encoded; }
|
||||
static inline const QString cloud_storage_newpassword() { return prefs.cloud_storage_newpassword; }
|
||||
static inline const QString cloud_storage_password() { return prefs.cloud_storage_password; }
|
||||
static inline const QString cloud_storage_pin() { return prefs.cloud_storage_pin; }
|
||||
static inline QString cloud_base_url() { return prefs.cloud_base_url; }
|
||||
static inline QString cloud_git_url() { return prefs.cloud_git_url; }
|
||||
static inline QString cloud_storage_email() { return prefs.cloud_storage_email; }
|
||||
static inline QString cloud_storage_email_encoded() { return prefs.cloud_storage_email_encoded; }
|
||||
static inline QString cloud_storage_newpassword() { return prefs.cloud_storage_newpassword; }
|
||||
static inline QString cloud_storage_password() { return prefs.cloud_storage_password; }
|
||||
static inline QString cloud_storage_pin() { return prefs.cloud_storage_pin; }
|
||||
static inline int cloud_timeout() { return prefs.cloud_timeout; }
|
||||
static inline int cloud_verification_status() { return prefs.cloud_verification_status; }
|
||||
static inline bool git_local_only() { return prefs.git_local_only; }
|
||||
static inline bool save_password_local() { return prefs.save_password_local; }
|
||||
static inline bool save_userid_local() { return prefs.save_userid_local; }
|
||||
static inline const QString userid() { return prefs.userid; }
|
||||
static inline QString userid() { return prefs.userid; }
|
||||
|
||||
public slots:
|
||||
void set_cloud_base_url(const QString& value);
|
||||
|
|
Loading…
Reference in a new issue