diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2016-12-04 11:48:05 +0100 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2016-12-04 11:48:05 +0100 |
commit | 51b55a0e76b25f07d90b969103b9c92d7b91d7d5 (patch) | |
tree | 8ef43c851a1d2467a86ee5a097b0db70fc0c5def /components/package/contents/ui/AutocompleteLineEdit.qml | |
parent | cc177ea2edba40f928c47bcff87d887e2f088c72 (diff) | |
download | kube-51b55a0e76b25f07d90b969103b9c92d7b91d7d5.tar.gz kube-51b55a0e76b25f07d90b969103b9c92d7b91d7d5.zip |
port focus composer to qqc2
Diffstat (limited to 'components/package/contents/ui/AutocompleteLineEdit.qml')
-rw-r--r-- | components/package/contents/ui/AutocompleteLineEdit.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/package/contents/ui/AutocompleteLineEdit.qml b/components/package/contents/ui/AutocompleteLineEdit.qml index 173a006c..cb6e4fcb 100644 --- a/components/package/contents/ui/AutocompleteLineEdit.qml +++ b/components/package/contents/ui/AutocompleteLineEdit.qml | |||
@@ -17,14 +17,14 @@ | |||
17 | */ | 17 | */ |
18 | 18 | ||
19 | import QtQuick 2.7 | 19 | import QtQuick 2.7 |
20 | import QtQuick.Controls 1.4 | 20 | import QtQuick.Controls 1.4 as Controls1 |
21 | import QtQuick.Controls 2.0 as Controls2 | 21 | import QtQuick.Controls 2.0 as Controls2 |
22 | import QtQuick.Layouts 1.1 | 22 | import QtQuick.Layouts 1.1 |
23 | import QtQuick.Dialogs 1.0 | 23 | import QtQuick.Dialogs 1.0 |
24 | 24 | ||
25 | import org.kde.kirigami 1.0 as Kirigami | 25 | import org.kde.kirigami 1.0 as Kirigami |
26 | 26 | ||
27 | TextField { | 27 | Controls2.TextField { |
28 | id: textField | 28 | id: textField |
29 | 29 | ||
30 | property string searchTerm | 30 | property string searchTerm |
@@ -94,7 +94,7 @@ TextField { | |||
94 | width: textField.width | 94 | width: textField.width |
95 | border.color: "Black" | 95 | border.color: "Black" |
96 | radius: 5 | 96 | radius: 5 |
97 | ScrollView { | 97 | Controls1.ScrollView { |
98 | id: scrollView | 98 | id: scrollView |
99 | anchors.fill: parent | 99 | anchors.fill: parent |
100 | ListView { | 100 | ListView { |