mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
a89b36c661
QPref has only static functions. There seems to be no point in instantiating a singleton of this object. Remove the instance() method and remove the Q_OBJECT macro. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
21 lines
415 B
C++
21 lines
415 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef QPREF_H
|
|
#define QPREF_H
|
|
#include "core/pref.h"
|
|
|
|
#include <QObject>
|
|
#include <QQmlEngine>
|
|
|
|
class qPref {
|
|
public:
|
|
// Load/Sync local settings (disk) and struct preference
|
|
static void load() { loadSync(false); }
|
|
static void sync() { loadSync(true); }
|
|
|
|
// Register QML
|
|
static void registerQML(QQmlEngine *engine);
|
|
|
|
private:
|
|
static void loadSync(bool doSync);
|
|
};
|
|
#endif
|