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.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/framework/src/frameworkplugin.cpp b/framework/src/frameworkplugin.cpp
index 84ada236..9c79f515 100644
--- a/framework/src/frameworkplugin.cpp
+++ b/framework/src/frameworkplugin.cpp
@@ -33,6 +33,7 @@
33#include "accounts/accountfactory.h" 33#include "accounts/accountfactory.h"
34#include "settings/settings.h" 34#include "settings/settings.h"
35#include "fabric.h" 35#include "fabric.h"
36#include "kubeimage.h"
36 37
37#include <QtQml> 38#include <QtQml>
38 39
@@ -62,4 +63,6 @@ void FrameworkPlugin::registerTypes (const char *uri)
62 63
63 qmlRegisterType<Kube::Fabric::Listener>(uri, 1, 0, "Listener"); 64 qmlRegisterType<Kube::Fabric::Listener>(uri, 1, 0, "Listener");
64 qmlRegisterSingletonType<Kube::Fabric::Fabric>(uri, 1, 0, "Fabric", fabric_singletontype_provider); 65 qmlRegisterSingletonType<Kube::Fabric::Fabric>(uri, 1, 0, "Fabric", fabric_singletontype_provider);
66
67 qmlRegisterType<KubeImage>(uri, 1, 0, "KubeImage");
65} 68}