summaryrefslogtreecommitdiffstats
path: root/framework/src/frameworkplugin.cpp
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-09-07 15:58:05 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-09-07 15:59:03 +0200
commit07688cc46d22a86622231ae7cd4494ddf6e75e33 (patch)
tree7c5afe9c6f59ded92fa1b416dcf8bcdb3fc02404 /framework/src/frameworkplugin.cpp
parent9788bb93ba05210c0e757b0a3099855015de0188 (diff)
downloadkube-07688cc46d22a86622231ae7cd4494ddf6e75e33.tar.gz
kube-07688cc46d22a86622231ae7cd4494ddf6e75e33.zip
Launch into settings without an account configured
Diffstat (limited to 'framework/src/frameworkplugin.cpp')
-rw-r--r--framework/src/frameworkplugin.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/framework/src/frameworkplugin.cpp b/framework/src/frameworkplugin.cpp
index f5cd2cf5..8fd457fc 100644
--- a/framework/src/frameworkplugin.cpp
+++ b/framework/src/frameworkplugin.cpp
@@ -36,6 +36,7 @@
36#include "kubeimage.h" 36#include "kubeimage.h"
37#include "clipboardproxy.h" 37#include "clipboardproxy.h"
38#include "webengineprofile.h" 38#include "webengineprofile.h"
39#include "startupcheck.h"
39 40
40#include <QtQml> 41#include <QtQml>
41 42
@@ -75,5 +76,6 @@ void FrameworkPlugin::registerTypes (const char *uri)
75 76
76 qmlRegisterType<KubeImage>(uri, 1, 0, "KubeImage"); 77 qmlRegisterType<KubeImage>(uri, 1, 0, "KubeImage");
77 qmlRegisterType<ClipboardProxy>(uri, 1, 0, "Clipboard"); 78 qmlRegisterType<ClipboardProxy>(uri, 1, 0, "Clipboard");
79 qmlRegisterType<StartupCheck>(uri, 1, 0, "StartupCheck");
78 qmlRegisterSingletonType<WebEngineProfile>(uri, 1, 0, "WebEngineProfile", webengineprofile_singletontype_provider); 80 qmlRegisterSingletonType<WebEngineProfile>(uri, 1, 0, "WebEngineProfile", webengineprofile_singletontype_provider);
79} 81}