summaryrefslogtreecommitdiffstats
path: root/framework/domain/mailplugin.cpp
diff options
context:
space:
mode:
authorSandro Knauß <sknauss@kde.org>2016-10-11 16:19:01 +0200
committerSandro Knauß <sknauss@kde.org>2016-10-11 16:19:01 +0200
commit7d6ec8866c90918be94364e52bbdd4f3e53da915 (patch)
tree007cc6ded7358a7dcdf8a5a87202bb5378f60d93 /framework/domain/mailplugin.cpp
parent1974c19eadd497e355ac985a00d0571f3e6c7712 (diff)
parentfd3a6901f17f3dcfd446e531dd10c0eb61cf0b93 (diff)
downloadkube-7d6ec8866c90918be94364e52bbdd4f3e53da915.tar.gz
kube-7d6ec8866c90918be94364e52bbdd4f3e53da915.zip
Merge branch 'develop' into dev/mimetreeinterface
Diffstat (limited to 'framework/domain/mailplugin.cpp')
-rw-r--r--framework/domain/mailplugin.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/framework/domain/mailplugin.cpp b/framework/domain/mailplugin.cpp
index 9f06fd5f..c7023bde 100644
--- a/framework/domain/mailplugin.cpp
+++ b/framework/domain/mailplugin.cpp
@@ -28,6 +28,7 @@
28#include "accountfactory.h" 28#include "accountfactory.h"
29#include "accountscontroller.h" 29#include "accountscontroller.h"
30#include "accountsmodel.h" 30#include "accountsmodel.h"
31#include "outboxmodel.h"
31 32
32#include <QtQml> 33#include <QtQml>
33 34
@@ -43,4 +44,5 @@ void MailPlugin::registerTypes (const char *uri)
43 qmlRegisterType<AccountFactory>(uri, 1, 0, "AccountFactory"); 44 qmlRegisterType<AccountFactory>(uri, 1, 0, "AccountFactory");
44 qmlRegisterType<AccountsController>(uri, 1, 0, "AccountsController"); 45 qmlRegisterType<AccountsController>(uri, 1, 0, "AccountsController");
45 qmlRegisterType<AccountsModel>(uri, 1, 0, "AccountsModel"); 46 qmlRegisterType<AccountsModel>(uri, 1, 0, "AccountsModel");
47 qmlRegisterType<OutboxModel>(uri, 1, 0, "OutboxModel");
46} 48}