From 3eae683b57d225c680a430c83db1425c38765742 Mon Sep 17 00:00:00 2001 From: jan Iversen Date: Sat, 21 Jul 2018 18:12:59 +0200 Subject: core: make qPrefAnimations/CloudStorage getters static and inline Add static and inline to getter in all qPref header files Remove call to GET_PREFERENCE_* in qPrefDisplay.cpp Remove GET_PREFERENCE_* from qPrefPrivate.h static inline is slightly faster than a function call, but it saves a lot of coding lines (no lines in qPref*.cpp). Getters are a direct reference to struct preferences, so they will normally only be used from QML. Signed-off-by: Jan Iversen --- core/settings/qPrefAnimations.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'core/settings/qPrefAnimations.h') diff --git a/core/settings/qPrefAnimations.h b/core/settings/qPrefAnimations.h index 4971aa06d..5b0fcaea4 100644 --- a/core/settings/qPrefAnimations.h +++ b/core/settings/qPrefAnimations.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: GPL-2.0 #ifndef QPREFANIMATIONS_H #define QPREFANIMATIONS_H +#include "core/pref.h" #include @@ -18,7 +19,7 @@ public: void sync() { loadSync(true); } public: - int animation_speed() const; + static inline int animation_speed() { return prefs.animation_speed; }; public slots: void set_animation_speed(int value); -- cgit v1.2.3-70-g09d2