summaryrefslogtreecommitdiffstats
path: root/core/settings/qPref.h
diff options
context:
space:
mode:
authorGravatar jan Iversen <jani@apache.org>2018-08-31 11:57:28 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2018-09-11 17:22:58 -0700
commita71afd31ee66edf45c8970dcbd6514d7c4b5e9f0 (patch)
treef37c28d33c80aee2f0169f140d62ae751d46a9ed /core/settings/qPref.h
parent7940e45c4c56594a0fe43dda28f6126cb2ceb555 (diff)
downloadsubsurface-a71afd31ee66edf45c8970dcbd6514d7c4b5e9f0.tar.gz
core: add auto registration to qPref*
Instead of having all register calls in subsurface-helper.cpp let qPref.cpp handle all qPref registration, since they also need to be different update subsurface-helper and testqml accordingly. Signed-off-by: Jan Iversen <jani@apache.org>
Diffstat (limited to 'core/settings/qPref.h')
-rw-r--r--core/settings/qPref.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/settings/qPref.h b/core/settings/qPref.h
index 036b3c6b2..f62a5eec4 100644
--- a/core/settings/qPref.h
+++ b/core/settings/qPref.h
@@ -35,6 +35,9 @@ public:
static void load() { loadSync(false); }
static void sync() { loadSync(true); }
+ // Register QML
+ void registerQML();
+
public:
enum cloud_status {
CS_UNKNOWN,
@@ -50,5 +53,4 @@ public:
private:
static void loadSync(bool doSync);
};
-
#endif