diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-04-04 14:44:26 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-04-04 14:44:26 +0200 |
commit | 32449cb4c7d7a37fa7fd54d5f7fc29bc7ecb2eff (patch) | |
tree | ec991216a28c975ed1e3078a58c9666586235b1a /views | |
parent | 6221f48574df1e212339f0588475849140b119cb (diff) | |
download | kube-32449cb4c7d7a37fa7fd54d5f7fc29bc7ecb2eff.tar.gz kube-32449cb4c7d7a37fa7fd54d5f7fc29bc7ecb2eff.zip |
Got rid of controls1 where possible, and otherwise marked it learly
Diffstat (limited to 'views')
-rw-r--r-- | views/accounts/qml/View.qml | 4 | ||||
-rw-r--r-- | views/composer/qml/AddresseeListEditor.qml | 1 | ||||
-rw-r--r-- | views/composer/qml/View.qml | 1 | ||||
-rw-r--r-- | views/conversation/qml/View.qml | 4 | ||||
-rw-r--r-- | views/log/qml/View.qml | 4 | ||||
-rw-r--r-- | views/search/qml/View.qml | 4 |
6 files changed, 8 insertions, 10 deletions
diff --git a/views/accounts/qml/View.qml b/views/accounts/qml/View.qml index 28849ae4..e25c32c9 100644 --- a/views/accounts/qml/View.qml +++ b/views/accounts/qml/View.qml | |||
@@ -18,7 +18,7 @@ | |||
18 | 18 | ||
19 | import QtQuick 2.4 | 19 | import QtQuick 2.4 |
20 | import QtQuick.Layouts 1.1 | 20 | import QtQuick.Layouts 1.1 |
21 | import QtQuick.Controls 1.3 as Controls | 21 | import QtQuick.Controls 1.3 as Controls1 |
22 | import QtQuick.Controls 2.0 | 22 | import QtQuick.Controls 2.0 |
23 | import org.kube.framework 1.0 as Kube | 23 | import org.kube.framework 1.0 as Kube |
24 | import org.kube.components.accounts 1.0 as KubeAccounts | 24 | import org.kube.components.accounts 1.0 as KubeAccounts |
@@ -30,7 +30,7 @@ FocusScope { | |||
30 | //Defines available account types. | 30 | //Defines available account types. |
31 | property var availableAccountPlugins: ["kolabnow", "imap", "maildir", "gmail"] | 31 | property var availableAccountPlugins: ["kolabnow", "imap", "maildir", "gmail"] |
32 | 32 | ||
33 | Controls.SplitView { | 33 | Controls1.SplitView { |
34 | height: parent.height | 34 | height: parent.height |
35 | width: parent.width | 35 | width: parent.width |
36 | 36 | ||
diff --git a/views/composer/qml/AddresseeListEditor.qml b/views/composer/qml/AddresseeListEditor.qml index 8f9862e7..9267ebee 100644 --- a/views/composer/qml/AddresseeListEditor.qml +++ b/views/composer/qml/AddresseeListEditor.qml | |||
@@ -19,7 +19,6 @@ | |||
19 | 19 | ||
20 | 20 | ||
21 | import QtQuick 2.7 | 21 | import QtQuick 2.7 |
22 | import QtQuick.Controls 1.3 | ||
23 | import QtQuick.Layouts 1.1 | 22 | import QtQuick.Layouts 1.1 |
24 | 23 | ||
25 | import org.kube.framework 1.0 as Kube | 24 | import org.kube.framework 1.0 as Kube |
diff --git a/views/composer/qml/View.qml b/views/composer/qml/View.qml index ad9689e8..85e8b559 100644 --- a/views/composer/qml/View.qml +++ b/views/composer/qml/View.qml | |||
@@ -19,7 +19,6 @@ | |||
19 | 19 | ||
20 | 20 | ||
21 | import QtQuick 2.7 | 21 | import QtQuick 2.7 |
22 | import QtQuick.Controls 1.3 | ||
23 | import QtQuick.Controls 2.0 as Controls2 | 22 | import QtQuick.Controls 2.0 as Controls2 |
24 | import QtQuick.Layouts 1.1 | 23 | import QtQuick.Layouts 1.1 |
25 | import QtQuick.Dialogs 1.0 as Dialogs | 24 | import QtQuick.Dialogs 1.0 as Dialogs |
diff --git a/views/conversation/qml/View.qml b/views/conversation/qml/View.qml index c0e44144..c1f3625b 100644 --- a/views/conversation/qml/View.qml +++ b/views/conversation/qml/View.qml | |||
@@ -19,7 +19,7 @@ | |||
19 | 19 | ||
20 | 20 | ||
21 | import QtQuick 2.7 | 21 | import QtQuick 2.7 |
22 | import QtQuick.Controls 1.3 | 22 | import QtQuick.Controls 1.3 as Controls1 |
23 | import QtQuick.Controls 2.0 as Controls2 | 23 | import QtQuick.Controls 2.0 as Controls2 |
24 | import QtQuick.Layouts 1.1 | 24 | import QtQuick.Layouts 1.1 |
25 | 25 | ||
@@ -27,7 +27,7 @@ import org.kube.framework 1.0 as Kube | |||
27 | 27 | ||
28 | FocusScope { | 28 | FocusScope { |
29 | property alias currentAccount: accountFolderview.currentAccount | 29 | property alias currentAccount: accountFolderview.currentAccount |
30 | SplitView { | 30 | Controls1.SplitView { |
31 | anchors.fill: parent | 31 | anchors.fill: parent |
32 | Rectangle { | 32 | Rectangle { |
33 | width: Kube.Units.gridUnit * 10 | 33 | width: Kube.Units.gridUnit * 10 |
diff --git a/views/log/qml/View.qml b/views/log/qml/View.qml index 9b2ac24a..bf06b76c 100644 --- a/views/log/qml/View.qml +++ b/views/log/qml/View.qml | |||
@@ -19,11 +19,11 @@ | |||
19 | 19 | ||
20 | import QtQuick 2.4 | 20 | import QtQuick 2.4 |
21 | import QtQuick.Layouts 1.1 | 21 | import QtQuick.Layouts 1.1 |
22 | import QtQuick.Controls 1.3 as Controls | 22 | import QtQuick.Controls 1.3 as Controls1 |
23 | import QtQuick.Controls 2.0 as Controls2 | 23 | import QtQuick.Controls 2.0 as Controls2 |
24 | import org.kube.framework 1.0 as Kube | 24 | import org.kube.framework 1.0 as Kube |
25 | 25 | ||
26 | Controls.SplitView { | 26 | Controls1.SplitView { |
27 | id: root | 27 | id: root |
28 | 28 | ||
29 | property bool pendingError: false; | 29 | property bool pendingError: false; |
diff --git a/views/search/qml/View.qml b/views/search/qml/View.qml index 437b0ba2..d63f6d1f 100644 --- a/views/search/qml/View.qml +++ b/views/search/qml/View.qml | |||
@@ -19,14 +19,14 @@ | |||
19 | 19 | ||
20 | 20 | ||
21 | import QtQuick 2.7 | 21 | import QtQuick 2.7 |
22 | import QtQuick.Controls 1.3 | 22 | import QtQuick.Controls 1.3 as Controls1 |
23 | import QtQuick.Controls 2.0 as Controls2 | 23 | import QtQuick.Controls 2.0 as Controls2 |
24 | import QtQuick.Layouts 1.1 | 24 | import QtQuick.Layouts 1.1 |
25 | 25 | ||
26 | import org.kube.framework 1.0 as Kube | 26 | import org.kube.framework 1.0 as Kube |
27 | 27 | ||
28 | FocusScope { | 28 | FocusScope { |
29 | SplitView { | 29 | Controls1.SplitView { |
30 | anchors.fill: parent | 30 | anchors.fill: parent |
31 | ColumnLayout { | 31 | ColumnLayout { |
32 | width: Kube.Units.gridUnit * 18 | 32 | width: Kube.Units.gridUnit * 18 |