diff options
author | jan Iversen <jan@casacondor.com> | 2020-01-28 15:04:22 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-01-28 11:05:45 -0800 |
commit | 1d35942249a41a703db6e21323ddd21719303f3f (patch) | |
tree | 1046a89dceea59a658a2862b7f3323f2c5fc05c6 /subsurface-helper.cpp | |
parent | f69e1e31f00835e0be52bdb37fa5cfa327303faa (diff) | |
download | subsurface-1d35942249a41a703db6e21323ddd21719303f3f.tar.gz |
themeinterface: move registration to themeinterface
Move setup call and registration from subsurface-helper
to themeInterface, in order to keep the registration where the code
are.
Signed-off-by: jan Iversen <jan@casacondor.com>
Diffstat (limited to 'subsurface-helper.cpp')
-rw-r--r-- | subsurface-helper.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/subsurface-helper.cpp b/subsurface-helper.cpp index 5d1a84fae..9ae89561f 100644 --- a/subsurface-helper.cpp +++ b/subsurface-helper.cpp @@ -187,11 +187,9 @@ void register_qml_types(QQmlEngine *engine) if (engine != NULL) { QQmlContext *ct = engine->rootContext(); - // Register qml interface class + // Register qml interface classes QMLInterface::setup(ct); - - themeInterface::instance()->setup(); - ct->setContextProperty("ThemeNew", themeInterface::instance()); + themeInterface::setup(ct); } REGISTER_TYPE(QMLManager, "QMLManager"); |