summaryrefslogtreecommitdiffstats
path: root/framework/src/frameworkplugin.cpp
diff options
context:
space:
mode:
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}