summaryrefslogtreecommitdiffstats
path: root/core/settings/qPrefAnimations.h
diff options
context:
space:
mode:
authorGravatar jan Iversen <jani@apache.org>2018-07-17 15:22:51 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2018-07-18 10:40:08 -0700
commit3c3729711c86a621b425370fd11d4271e4208f1b (patch)
tree6d689f6b3ce4e24997d1a79e63e3039eef8c7642 /core/settings/qPrefAnimations.h
parentc0e9e978a1aa70713f9478391ebde353708a2f07 (diff)
downloadsubsurface-3c3729711c86a621b425370fd11d4271e4208f1b.tar.gz
core: remove QSettings in qPref* and use a shared variable
Add qPrefPrivate class which contains one QSettings variable, delete QSettings from qPref* class definitions this secures there are only instance of QSettings (QSettings needs to be in a QObject class to work) Signed-off-by: Jan Iversen <jani@apache.org>
Diffstat (limited to 'core/settings/qPrefAnimations.h')
-rw-r--r--core/settings/qPrefAnimations.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/core/settings/qPrefAnimations.h b/core/settings/qPrefAnimations.h
index fb58b207e..4971aa06d 100644
--- a/core/settings/qPrefAnimations.h
+++ b/core/settings/qPrefAnimations.h
@@ -3,7 +3,6 @@
#define QPREFANIMATIONS_H
#include <QObject>
-#include <QSettings>
class qPrefAnimations : public QObject {
Q_OBJECT
@@ -28,9 +27,6 @@ signals:
void animation_speed_changed(int value);
private:
- const QString group = QStringLiteral("Animations");
- QSettings setting;
-
// functions to load/sync variable with disk
void disk_animation_speed(bool doSync);
};