summaryrefslogtreecommitdiffstats
path: root/framework/src/frameworkplugin.cpp
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2017-09-12 09:44:39 +0200
committerMichael Bohlender <michael.bohlender@kdemail.net>2017-09-12 09:44:39 +0200
commita4f6d04436ff02f0c8a5b6e6f2427e823a18f0d4 (patch)
tree27506c078c4297fd031f94b3cce4db83035b35f3 /framework/src/frameworkplugin.cpp
parentaa559f644da3b6be8ffa28d0f53b9f989c2076d0 (diff)
downloadkube-a4f6d04436ff02f0c8a5b6e6f2427e823a18f0d4.tar.gz
kube-a4f6d04436ff02f0c8a5b6e6f2427e823a18f0d4.zip
cpoy over example texteditor code and expose it through the framewoks plugin
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 8fd457fc..b8cad45d 100644
--- a/framework/src/frameworkplugin.cpp
+++ b/framework/src/frameworkplugin.cpp
@@ -29,6 +29,7 @@
29#include "domain/mouseproxy.h" 29#include "domain/mouseproxy.h"
30#include "domain/contactcontroller.h" 30#include "domain/contactcontroller.h"
31#include "domain/peoplemodel.h" 31#include "domain/peoplemodel.h"
32#include "domain/documenthandler.h"
32#include "accounts/accountsmodel.h" 33#include "accounts/accountsmodel.h"
33#include "accounts/accountfactory.h" 34#include "accounts/accountfactory.h"
34#include "settings/settings.h" 35#include "settings/settings.h"
@@ -65,6 +66,7 @@ void FrameworkPlugin::registerTypes (const char *uri)
65 qmlRegisterType<MouseProxy>(uri, 1, 0, "MouseProxy"); 66 qmlRegisterType<MouseProxy>(uri, 1, 0, "MouseProxy");
66 qmlRegisterType<ContactController>(uri, 1, 0,"ContactController"); 67 qmlRegisterType<ContactController>(uri, 1, 0,"ContactController");
67 qmlRegisterType<PeopleModel>(uri, 1, 0,"PeopleModel"); 68 qmlRegisterType<PeopleModel>(uri, 1, 0,"PeopleModel");
69 qmlRegisterType<DocumentHandler>(uri, 1, 0, "DocumentHandler");
68 70
69 qmlRegisterType<AccountFactory>(uri, 1, 0, "AccountFactory"); 71 qmlRegisterType<AccountFactory>(uri, 1, 0, "AccountFactory");
70 qmlRegisterType<AccountsModel>(uri, 1, 0, "AccountsModel"); 72 qmlRegisterType<AccountsModel>(uri, 1, 0, "AccountsModel");