summaryrefslogtreecommitdiffstats
path: root/framework/src/frameworkplugin.cpp
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-10-06 11:43:33 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-10-06 11:46:58 +0200
commit737770bfa4bb91ed96412d18d6490db3450bcb1c (patch)
tree9b4bd7a6252c687b4cb5ac3d91ebe786e7891377 /framework/src/frameworkplugin.cpp
parent41e3f3544f3ec7ae3c14f18010005e3e55c003e7 (diff)
downloadkube-737770bfa4bb91ed96412d18d6490db3450bcb1c.tar.gz
kube-737770bfa4bb91ed96412d18d6490db3450bcb1c.zip
TextDocumentHandler to deal with HTML formatting
Diffstat (limited to 'framework/src/frameworkplugin.cpp')
-rw-r--r--framework/src/frameworkplugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/src/frameworkplugin.cpp b/framework/src/frameworkplugin.cpp
index c4f7e85d..9f7b03c1 100644
--- a/framework/src/frameworkplugin.cpp
+++ b/framework/src/frameworkplugin.cpp
@@ -29,7 +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 "domain/textdocumenthandler.h"
33#include "accounts/accountsmodel.h" 33#include "accounts/accountsmodel.h"
34#include "accounts/accountfactory.h" 34#include "accounts/accountfactory.h"
35#include "settings/settings.h" 35#include "settings/settings.h"
@@ -76,7 +76,7 @@ void FrameworkPlugin::registerTypes (const char *uri)
76 qmlRegisterType<MouseProxy>(uri, 1, 0, "MouseProxy"); 76 qmlRegisterType<MouseProxy>(uri, 1, 0, "MouseProxy");
77 qmlRegisterType<ContactController>(uri, 1, 0,"ContactController"); 77 qmlRegisterType<ContactController>(uri, 1, 0,"ContactController");
78 qmlRegisterType<PeopleModel>(uri, 1, 0,"PeopleModel"); 78 qmlRegisterType<PeopleModel>(uri, 1, 0,"PeopleModel");
79 qmlRegisterType<DocumentHandler>(uri, 1, 0, "DocumentHandler"); 79 qmlRegisterType<TextDocumentHandler>(uri, 1, 0, "TextDocumentHandler");
80 80
81 qmlRegisterType<AccountFactory>(uri, 1, 0, "AccountFactory"); 81 qmlRegisterType<AccountFactory>(uri, 1, 0, "AccountFactory");
82 qmlRegisterType<AccountsModel>(uri, 1, 0, "AccountsModel"); 82 qmlRegisterType<AccountsModel>(uri, 1, 0, "AccountsModel");