summaryrefslogtreecommitdiffstats
path: root/framework/domain/mailplugin.cpp
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2016-10-10 16:34:48 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2016-10-10 16:34:48 +0200
commit91f00fe588c9f00ac92f2d095c6ee9dd74c007a0 (patch)
tree147dda91a1df830cdffe2a2a8b79ba39bf8d6386 /framework/domain/mailplugin.cpp
parent9f89215be2612dbf54ad50c42565c310e3f4099c (diff)
downloadkube-91f00fe588c9f00ac92f2d095c6ee9dd74c007a0.tar.gz
kube-91f00fe588c9f00ac92f2d095c6ee9dd74c007a0.zip
An outbox model
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}