diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-01-01 23:18:24 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-01-02 00:31:49 +0100 |
commit | 8cf790d6bc91e5e9c06651ffe4a193b625207f0d (patch) | |
tree | 41cd4e957a62b2c2c35579a19a252b5484374364 /framework/domain/mailplugin.cpp | |
parent | ba7128b30850594c7efb258d1794e377eede364a (diff) | |
download | kube-8cf790d6bc91e5e9c06651ffe4a193b625207f0d.tar.gz kube-8cf790d6bc91e5e9c06651ffe4a193b625207f0d.zip |
Outboxcontroller and Mailcontroller
Diffstat (limited to 'framework/domain/mailplugin.cpp')
-rw-r--r-- | framework/domain/mailplugin.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/framework/domain/mailplugin.cpp b/framework/domain/mailplugin.cpp index c7023bde..eeb1aeb1 100644 --- a/framework/domain/mailplugin.cpp +++ b/framework/domain/mailplugin.cpp | |||
@@ -29,6 +29,8 @@ | |||
29 | #include "accountscontroller.h" | 29 | #include "accountscontroller.h" |
30 | #include "accountsmodel.h" | 30 | #include "accountsmodel.h" |
31 | #include "outboxmodel.h" | 31 | #include "outboxmodel.h" |
32 | #include "outboxcontroller.h" | ||
33 | #include "mailcontroller.h" | ||
32 | 34 | ||
33 | #include <QtQml> | 35 | #include <QtQml> |
34 | 36 | ||
@@ -44,5 +46,7 @@ void MailPlugin::registerTypes (const char *uri) | |||
44 | qmlRegisterType<AccountFactory>(uri, 1, 0, "AccountFactory"); | 46 | qmlRegisterType<AccountFactory>(uri, 1, 0, "AccountFactory"); |
45 | qmlRegisterType<AccountsController>(uri, 1, 0, "AccountsController"); | 47 | qmlRegisterType<AccountsController>(uri, 1, 0, "AccountsController"); |
46 | qmlRegisterType<AccountsModel>(uri, 1, 0, "AccountsModel"); | 48 | qmlRegisterType<AccountsModel>(uri, 1, 0, "AccountsModel"); |
49 | qmlRegisterType<OutboxController>(uri, 1, 0, "OutboxController"); | ||
47 | qmlRegisterType<OutboxModel>(uri, 1, 0, "OutboxModel"); | 50 | qmlRegisterType<OutboxModel>(uri, 1, 0, "OutboxModel"); |
51 | qmlRegisterType<MailController>(uri, 1, 0, "MailController"); | ||
48 | } | 52 | } |