From 254ba61fd90900dbb3816ba515d21e9d42f11f94 Mon Sep 17 00:00:00 2001 From: jan Iversen Date: Tue, 24 Jul 2018 18:19:46 +0200 Subject: core: make load/sync inline in qPrefAnimations Signed-off-by: Jan Iversen --- core/settings/qPrefAnimations.h | 4 ++-- core/settings/qPrefDiveComputer.h | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'core') diff --git a/core/settings/qPrefAnimations.h b/core/settings/qPrefAnimations.h index 5b0fcaea4..63aa57c24 100644 --- a/core/settings/qPrefAnimations.h +++ b/core/settings/qPrefAnimations.h @@ -15,8 +15,8 @@ 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 int animation_speed() { return prefs.animation_speed; }; diff --git a/core/settings/qPrefDiveComputer.h b/core/settings/qPrefDiveComputer.h index 8a80ee3ca..c270c8155 100644 --- a/core/settings/qPrefDiveComputer.h +++ b/core/settings/qPrefDiveComputer.h @@ -23,11 +23,11 @@ public: void inline sync() {loadSync(true); } public: - static inline const QString& device() {return prefs.dive_computer.device; }; - static inline const QString& device_name() {return prefs.dive_computer.device_name; }; + static inline QString device() {return prefs.dive_computer.device; }; + static inline QString device_name() {return prefs.dive_computer.device_name; }; static inline int download_mode() {return prefs.dive_computer.download_mode; }; - static inline const QString& product() {return prefs.dive_computer.product; }; - static inline const QString& vendor() {return prefs.dive_computer.vendor; }; + static inline QString product() {return prefs.dive_computer.product; }; + static inline QString vendor() {return prefs.dive_computer.vendor; }; public slots: void set_device(const QString& device); -- cgit v1.2.3-70-g09d2