diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-02-02 21:23:40 +0100 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-02-02 21:32:50 +0100 |
commit | 84714d6f9435b59045c08c76eb556663d1ee36d4 (patch) | |
tree | 00fd009d64e2e562ad1d34b4993fac8e80c3320a /framework/domain/mailplugin.cpp | |
parent | a319237e545213223e25ed9deb47e94c8529ae10 (diff) | |
download | kube-84714d6f9435b59045c08c76eb556663d1ee36d4.tar.gz kube-84714d6f9435b59045c08c76eb556663d1ee36d4.zip |
add initial contact controller and contact detail view
Diffstat (limited to 'framework/domain/mailplugin.cpp')
-rw-r--r-- | framework/domain/mailplugin.cpp | 2 |
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 | } |