diff options
Diffstat (limited to 'core/settings/qPref.cpp')
-rw-r--r-- | core/settings/qPref.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/core/settings/qPref.cpp b/core/settings/qPref.cpp index eabd6e7a9..49851c29a 100644 --- a/core/settings/qPref.cpp +++ b/core/settings/qPref.cpp @@ -1,15 +1,14 @@ // SPDX-License-Identifier: GPL-2.0 -#include "qPrefPrivate.h" #include "qPref.h" +#include "qPrefPrivate.h" #include "ssrf-version.h" -qPref::qPref(QObject *parent) : - QObject(parent) +qPref::qPref(QObject *parent) : QObject(parent) { } qPref *qPref::instance() { -static qPref *self = new qPref; + static qPref *self = new qPref; return self; } |