summaryrefslogtreecommitdiffstats
path: root/framework/domain/mailplugin.cpp
diff options
context:
space:
mode:
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 2ec73644..fba6c458 100644
--- a/framework/domain/mailplugin.cpp
+++ b/framework/domain/mailplugin.cpp
@@ -30,6 +30,7 @@
30#include "mailcontroller.h" 30#include "mailcontroller.h"
31#include "foldercontroller.h" 31#include "foldercontroller.h"
32#include "mouseproxy.h" 32#include "mouseproxy.h"
33#include "contactcontroller.h"
33 34
34#include <QtQml> 35#include <QtQml>
35 36
@@ -47,4 +48,5 @@ void MailPlugin::registerTypes (const char *uri)
47 qmlRegisterType<MailController>(uri, 1, 0, "MailController"); 48 qmlRegisterType<MailController>(uri, 1, 0, "MailController");
48 qmlRegisterType<FolderController>(uri, 1, 0, "FolderController"); 49 qmlRegisterType<FolderController>(uri, 1, 0, "FolderController");
49 qmlRegisterType<MouseProxy>(uri, 1, 0, "MouseProxy"); 50 qmlRegisterType<MouseProxy>(uri, 1, 0, "MouseProxy");
51 qmlRegisterType<ContactController>(uri, 1, 0,"ContactController");
50} 52}