summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--components/accounts/AccountWizard.qml7
-rw-r--r--components/accounts/CreateMaildir.qml18
2 files changed, 12 insertions, 13 deletions
diff --git a/components/accounts/AccountWizard.qml b/components/accounts/AccountWizard.qml
index 16928eb9..d1fa9299 100644
--- a/components/accounts/AccountWizard.qml
+++ b/components/accounts/AccountWizard.qml
@@ -18,7 +18,6 @@
18 18
19import QtQuick 2.7 19import QtQuick 2.7
20import QtQuick.Layouts 1.1 20import QtQuick.Layouts 1.1
21import QtQuick.Controls 1.4 as Controls
22import QtQuick.Controls 2.0 as Controls2 21import QtQuick.Controls 2.0 as Controls2
23import org.kde.kirigami 1.0 as Kirigami 22import org.kde.kirigami 1.0 as Kirigami
24 23
@@ -52,7 +51,7 @@ Controls2.Popup {
52 51
53 spacing: Kirigami.Units.largeSpacing 52 spacing: Kirigami.Units.largeSpacing
54 53
55 Controls.Button { 54 Controls2.Button {
56 55
57 Layout.fillWidth: true 56 Layout.fillWidth: true
58 57
@@ -63,7 +62,7 @@ Controls2.Popup {
63 } 62 }
64 } 63 }
65 64
66 Controls.Button { 65 Controls2.Button {
67 66
68 Layout.fillWidth: true 67 Layout.fillWidth: true
69 68
@@ -74,7 +73,7 @@ Controls2.Popup {
74 } 73 }
75 } 74 }
76 75
77 Controls.Button { 76 Controls2.Button {
78 77
79 Layout.fillWidth: true 78 Layout.fillWidth: true
80 79
diff --git a/components/accounts/CreateMaildir.qml b/components/accounts/CreateMaildir.qml
index 01f1a83d..e5d10fd4 100644
--- a/components/accounts/CreateMaildir.qml
+++ b/components/accounts/CreateMaildir.qml
@@ -61,7 +61,7 @@ Item {
61 color: Kirigami.Theme.highlightColor 61 color: Kirigami.Theme.highlightColor
62 } 62 }
63 63
64 Kirigami.Label { 64 Controls2.Label {
65 id: subHeadline 65 id: subHeadline
66 66
67 anchors { 67 anchors {
@@ -91,7 +91,7 @@ Item {
91 columnSpacing: Kirigami.Units.largeSpacing 91 columnSpacing: Kirigami.Units.largeSpacing
92 rowSpacing: Kirigami.Units.largeSpacing 92 rowSpacing: Kirigami.Units.largeSpacing
93 93
94 Kirigami.Label { 94 Controls2.Label {
95 text: "Title of account" 95 text: "Title of account"
96 Layout.alignment: Qt.AlignRight 96 Layout.alignment: Qt.AlignRight
97 } 97 }
@@ -106,7 +106,7 @@ Item {
106 } 106 }
107 } 107 }
108 108
109 Kirigami.Label { 109 Controls2.Label {
110 text: "Path" 110 text: "Path"
111 Layout.alignment: Qt.AlignRight 111 Layout.alignment: Qt.AlignRight
112 } 112 }
@@ -148,7 +148,7 @@ Item {
148 } 148 }
149 149
150 /* 150 /*
151 Kirigami.Label { 151 Controls2.Label {
152 text: "" 152 text: ""
153 } 153 }
154 Controls.CheckBox { 154 Controls.CheckBox {
@@ -157,21 +157,21 @@ Item {
157 } 157 }
158 */ 158 */
159 159
160 Kirigami.Label { 160 Controls2.Label {
161 text: "" 161 text: ""
162 Layout.fillHeight: true 162 Layout.fillHeight: true
163 } 163 }
164 Kirigami.Label { 164 Controls2.Label {
165 text: "" 165 text: ""
166 } 166 }
167 167
168 Kirigami.Label { 168 Controls2.Label {
169 text: "" 169 text: ""
170 } 170 }
171 Item { 171 Item {
172 Layout.fillWidth: true 172 Layout.fillWidth: true
173 173
174 Controls.Button { 174 Controls2.Button {
175 text: "Discard" 175 text: "Discard"
176 176
177 onClicked: { 177 onClicked: {
@@ -179,7 +179,7 @@ Item {
179 } 179 }
180 } 180 }
181 181
182 Controls.Button { 182 Controls2.Button {
183 id: saveButton 183 id: saveButton
184 184
185 anchors.right: parent.right 185 anchors.right: parent.right