diff options
author | jan Iversen <jani@apache.org> | 2018-07-17 15:22:51 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-07-18 10:40:08 -0700 |
commit | 3c3729711c86a621b425370fd11d4271e4208f1b (patch) | |
tree | 6d689f6b3ce4e24997d1a79e63e3039eef8c7642 /core/settings/qPrefDisplay.cpp | |
parent | c0e9e978a1aa70713f9478391ebde353708a2f07 (diff) | |
download | subsurface-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/qPrefDisplay.cpp')
-rw-r--r-- | core/settings/qPrefDisplay.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/settings/qPrefDisplay.cpp b/core/settings/qPrefDisplay.cpp index a248294d1..55a0129a9 100644 --- a/core/settings/qPrefDisplay.cpp +++ b/core/settings/qPrefDisplay.cpp @@ -1,11 +1,13 @@ // SPDX-License-Identifier: GPL-2.0 #include "qPref.h" -#include "qPref_private.h" +#include "qPrefPrivate.h" #include "core/subsurface-string.h" #include <QApplication> #include <QFont> +static const QString group = QStringLiteral("Display"); + qPrefDisplay::qPrefDisplay(QObject *parent) : QObject(parent) { } |