diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-02-22 15:56:21 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-02-22 15:57:44 +0100 |
commit | 5ca3a769c0b0c93cfcbf6134937b32eed52e2fc2 (patch) | |
tree | baae5147722bdef26a1a8dc99ff6a020a782bcc9 /framework/accounts/accountsplugin.cpp | |
parent | cb2b1a35e14031f15155243aee12fc862cb65ebf (diff) | |
download | kube-5ca3a769c0b0c93cfcbf6134937b32eed52e2fc2.tar.gz kube-5ca3a769c0b0c93cfcbf6134937b32eed52e2fc2.zip |
Removed Create/Edit*.qml and controllers, added gmail plugin
The current settings plugin could potentially be replaced by a proper
controller, but what we have works so that's low priority.
Diffstat (limited to 'framework/accounts/accountsplugin.cpp')
-rw-r--r-- | framework/accounts/accountsplugin.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/framework/accounts/accountsplugin.cpp b/framework/accounts/accountsplugin.cpp index 83ae6f0b..e980d5f3 100644 --- a/framework/accounts/accountsplugin.cpp +++ b/framework/accounts/accountsplugin.cpp | |||
@@ -20,9 +20,6 @@ | |||
20 | 20 | ||
21 | #include "accountsmodel.h" | 21 | #include "accountsmodel.h" |
22 | #include "accountfactory.h" | 22 | #include "accountfactory.h" |
23 | #include "maildircontroller.h" | ||
24 | #include "kolabnowcontroller.h" | ||
25 | #include "gmailcontroller.h" | ||
26 | 23 | ||
27 | #include <QtQml> | 24 | #include <QtQml> |
28 | 25 | ||
@@ -31,7 +28,4 @@ void AccountsPlugin::registerTypes (const char *uri) | |||
31 | Q_ASSERT(uri == QLatin1String("org.kube.framework.accounts")); | 28 | Q_ASSERT(uri == QLatin1String("org.kube.framework.accounts")); |
32 | qmlRegisterType<AccountFactory>(uri, 1, 0, "AccountFactory"); | 29 | qmlRegisterType<AccountFactory>(uri, 1, 0, "AccountFactory"); |
33 | qmlRegisterType<AccountsModel>(uri, 1, 0, "AccountsModel"); | 30 | qmlRegisterType<AccountsModel>(uri, 1, 0, "AccountsModel"); |
34 | qmlRegisterType<MaildirController>(uri, 1, 0, "MaildirController"); | ||
35 | qmlRegisterType<KolabNowController>(uri, 1, 0, "KolabNowController"); | ||
36 | qmlRegisterType<GmailController>(uri, 1, 0, "GmailController"); | ||
37 | } | 31 | } |