summaryrefslogtreecommitdiffstats
path: root/framework/mail/mailplugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'framework/mail/mailplugin.cpp')
-rw-r--r--framework/mail/mailplugin.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/framework/mail/mailplugin.cpp b/framework/mail/mailplugin.cpp
index 8b35dfb7..691d4a15 100644
--- a/framework/mail/mailplugin.cpp
+++ b/framework/mail/mailplugin.cpp
@@ -22,6 +22,7 @@
22 22
23#include "maillistmodel.h" 23#include "maillistmodel.h"
24#include "folderlistmodel.h" 24#include "folderlistmodel.h"
25#include "composer.h"
25 26
26#include <QtQml> 27#include <QtQml>
27 28
@@ -31,4 +32,5 @@ void MailPlugin::registerTypes (const char *uri)
31 32
32 qmlRegisterType<FolderListModel>(uri, 1, 0, "FolderListModel"); 33 qmlRegisterType<FolderListModel>(uri, 1, 0, "FolderListModel");
33 qmlRegisterType<MailListModel>(uri, 1, 0, "MailListModel"); 34 qmlRegisterType<MailListModel>(uri, 1, 0, "MailListModel");
35 qmlRegisterType<Composer>(uri, 1, 0, "Composer");
34} 36}