diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-02-22 20:21:26 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-02-22 20:21:26 +0100 |
commit | 88bbb10880d65af417689c7ad3455acf39a33215 (patch) | |
tree | a08c72761d46c628ad148096b960927a8b215b6e /framework/mail/mailplugin.cpp | |
parent | adc2201b961c31ffe0206efd7dd7d309bf5a8082 (diff) | |
download | kube-88bbb10880d65af417689c7ad3455acf39a33215.tar.gz kube-88bbb10880d65af417689c7ad3455acf39a33215.zip |
Moved the mail parsing into it's own little corner
Diffstat (limited to 'framework/mail/mailplugin.cpp')
-rw-r--r-- | framework/mail/mailplugin.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/framework/mail/mailplugin.cpp b/framework/mail/mailplugin.cpp index 691d4a15..750c6f8e 100644 --- a/framework/mail/mailplugin.cpp +++ b/framework/mail/mailplugin.cpp | |||
@@ -23,6 +23,7 @@ | |||
23 | #include "maillistmodel.h" | 23 | #include "maillistmodel.h" |
24 | #include "folderlistmodel.h" | 24 | #include "folderlistmodel.h" |
25 | #include "composer.h" | 25 | #include "composer.h" |
26 | #include "messageparser.h" | ||
26 | 27 | ||
27 | #include <QtQml> | 28 | #include <QtQml> |
28 | 29 | ||
@@ -33,4 +34,5 @@ void MailPlugin::registerTypes (const char *uri) | |||
33 | qmlRegisterType<FolderListModel>(uri, 1, 0, "FolderListModel"); | 34 | qmlRegisterType<FolderListModel>(uri, 1, 0, "FolderListModel"); |
34 | qmlRegisterType<MailListModel>(uri, 1, 0, "MailListModel"); | 35 | qmlRegisterType<MailListModel>(uri, 1, 0, "MailListModel"); |
35 | qmlRegisterType<Composer>(uri, 1, 0, "Composer"); | 36 | qmlRegisterType<Composer>(uri, 1, 0, "Composer"); |
37 | qmlRegisterType<MessageParser>(uri, 1, 0, "MessageParser"); | ||
36 | } | 38 | } |