diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-04-05 13:00:21 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-04-05 13:00:21 +0200 |
commit | 5755ad47145d2985ba74354961b4127d82c516f6 (patch) | |
tree | aa6af562b7e587be895ff5a4355270f82f3ea180 /accounts/maildir | |
parent | e78224a7d9ccf70aadde8c0bff1cab72e8cb7438 (diff) | |
download | kube-5755ad47145d2985ba74354961b4127d82c516f6.tar.gz kube-5755ad47145d2985ba74354961b4127d82c516f6.zip |
A single framework plugin
Diffstat (limited to 'accounts/maildir')
-rw-r--r-- | accounts/maildir/CMakeLists.txt | 4 | ||||
-rw-r--r-- | accounts/maildir/package/contents/ui/MaildirAccountSettings.qml | 7 |
2 files changed, 5 insertions, 6 deletions
diff --git a/accounts/maildir/CMakeLists.txt b/accounts/maildir/CMakeLists.txt index afdf660d..cb93551d 100644 --- a/accounts/maildir/CMakeLists.txt +++ b/accounts/maildir/CMakeLists.txt | |||
@@ -37,11 +37,11 @@ set(SRCS | |||
37 | 37 | ||
38 | add_library(maildiraccountplugin SHARED ${SRCS}) | 38 | add_library(maildiraccountplugin SHARED ${SRCS}) |
39 | qt5_use_modules(maildiraccountplugin Core Quick Qml) | 39 | qt5_use_modules(maildiraccountplugin Core Quick Qml) |
40 | target_link_libraries(maildiraccountplugin sink settingsplugin mailplugin) | 40 | target_link_libraries(maildiraccountplugin sink frameworkplugin) |
41 | 41 | ||
42 | add_library(maildiraccount_static STATIC ${SRCS}) | 42 | add_library(maildiraccount_static STATIC ${SRCS}) |
43 | qt5_use_modules(maildiraccount_static Core Quick Qml) | 43 | qt5_use_modules(maildiraccount_static Core Quick Qml) |
44 | target_link_libraries(maildiraccount_static sink settingsplugin mailplugin) | 44 | target_link_libraries(maildiraccount_static sink frameworkplugin) |
45 | add_subdirectory(tests) | 45 | add_subdirectory(tests) |
46 | 46 | ||
47 | kpackage_install_package(package org.kube.accounts.maildir "genericqml") | 47 | kpackage_install_package(package org.kube.accounts.maildir "genericqml") |
diff --git a/accounts/maildir/package/contents/ui/MaildirAccountSettings.qml b/accounts/maildir/package/contents/ui/MaildirAccountSettings.qml index 2e7b6d8a..f191c82c 100644 --- a/accounts/maildir/package/contents/ui/MaildirAccountSettings.qml +++ b/accounts/maildir/package/contents/ui/MaildirAccountSettings.qml | |||
@@ -25,7 +25,6 @@ import QtQuick.Dialogs 1.0 as Dialogs | |||
25 | 25 | ||
26 | import org.kde.kirigami 1.0 as Kirigami | 26 | import org.kde.kirigami 1.0 as Kirigami |
27 | 27 | ||
28 | import org.kube.framework.settings 1.0 as KubeSettings | ||
29 | import org.kube.accounts.maildir 1.0 as MaildirAccount | 28 | import org.kube.accounts.maildir 1.0 as MaildirAccount |
30 | 29 | ||
31 | Item { | 30 | Item { |
@@ -57,8 +56,8 @@ Item { | |||
57 | fill: parent | 56 | fill: parent |
58 | } | 57 | } |
59 | columns: 2 | 58 | columns: 2 |
60 | columnSpacing: KubeTheme.Units.largeSpacing | 59 | columnSpacing: Kube.Units.largeSpacing |
61 | rowSpacing: KubeTheme.Units.largeSpacing | 60 | rowSpacing: Kube.Units.largeSpacing |
62 | 61 | ||
63 | Controls.Label { | 62 | Controls.Label { |
64 | text: "Title of Account" | 63 | text: "Title of Account" |
@@ -88,7 +87,7 @@ Item { | |||
88 | } | 87 | } |
89 | 88 | ||
90 | Controls.Button { | 89 | Controls.Button { |
91 | iconName: KubeTheme.Icons.folder | 90 | iconName: Kube.Icons.folder |
92 | 91 | ||
93 | onClicked: { | 92 | onClicked: { |
94 | fileDialogComponent.createObject(parent) | 93 | fileDialogComponent.createObject(parent) |