diff options
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 { |