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 b0e2f9c9..d512ce10 100644
--- a/framework/src/frameworkplugin.cpp
+++ b/framework/src/frameworkplugin.cpp
@@ -42,6 +42,7 @@
42#include "controller.h" 42#include "controller.h"
43#include "domainobjectcontroller.h" 43#include "domainobjectcontroller.h"
44#include "extensionmodel.h" 44#include "extensionmodel.h"
45#include "viewhighlighter.h"
45 46
46#include <QtQml> 47#include <QtQml>
47#include <QQuickImageProvider> 48#include <QQuickImageProvider>
@@ -142,6 +143,7 @@ void FrameworkPlugin::registerTypes (const char *uri)
142 qmlRegisterType<KubeImage>(uri, 1, 0, "KubeImage"); 143 qmlRegisterType<KubeImage>(uri, 1, 0, "KubeImage");
143 qmlRegisterType<ClipboardProxy>(uri, 1, 0, "Clipboard"); 144 qmlRegisterType<ClipboardProxy>(uri, 1, 0, "Clipboard");
144 qmlRegisterType<StartupCheck>(uri, 1, 0, "StartupCheck"); 145 qmlRegisterType<StartupCheck>(uri, 1, 0, "StartupCheck");
146 qmlRegisterType<ViewHighlighter>(uri, 1, 0, "ViewHighlighter");
145 qmlRegisterSingletonType<WebEngineProfile>(uri, 1, 0, "WebEngineProfile", webengineprofile_singletontype_provider); 147 qmlRegisterSingletonType<WebEngineProfile>(uri, 1, 0, "WebEngineProfile", webengineprofile_singletontype_provider);
146 qmlRegisterSingletonType<Kube::Keyring>(uri, 1, 0, "Keyring", keyring_singletontype_provider); 148 qmlRegisterSingletonType<Kube::Keyring>(uri, 1, 0, "Keyring", keyring_singletontype_provider);
147} 149}