aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/controls/data/tst_scrollindicator.qml
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2015-09-14 23:53:12 +0200
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2015-10-09 22:23:40 +0000
commitad471146a715299bd3acab69f0cacb8a58d72d84 (patch)
tree83d4f396d0e162b66c23536e7e47177d784baec0 /tests/auto/controls/data/tst_scrollindicator.qml
parent7145fc86a8180c1a118b33925f141782559c8f76 (diff)
Attached properties are now available using the QML composite type name
Change-Id: I8cfbd420cea4e01528d2f289cfc5989268d8718a Task-number: QTBUG-43581 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'tests/auto/controls/data/tst_scrollindicator.qml')
-rw-r--r--tests/auto/controls/data/tst_scrollindicator.qml5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/auto/controls/data/tst_scrollindicator.qml b/tests/auto/controls/data/tst_scrollindicator.qml
index ac320117..71e09784 100644
--- a/tests/auto/controls/data/tst_scrollindicator.qml
+++ b/tests/auto/controls/data/tst_scrollindicator.qml
@@ -41,7 +41,6 @@
import QtQuick 2.2
import QtTest 1.0
import Qt.labs.controls 1.0
-import Qt.labs.templates 1.0 as T
TestCase {
id: testCase
@@ -80,7 +79,7 @@ TestCase {
compare(vertical.active, false)
compare(vertical.orientation, Qt.Vertical)
- container.T.ScrollIndicator.vertical = vertical
+ container.ScrollIndicator.vertical = vertical
compare(vertical.parent, container)
compare(vertical.orientation, Qt.Vertical)
compare(vertical.size, container.visibleArea.heightRatio)
@@ -93,7 +92,7 @@ TestCase {
compare(horizontal.active, false)
compare(horizontal.orientation, Qt.Vertical)
- container.T.ScrollIndicator.horizontal = horizontal
+ container.ScrollIndicator.horizontal = horizontal
compare(horizontal.parent, container)
compare(horizontal.orientation, Qt.Horizontal)
compare(horizontal.size, container.visibleArea.widthRatio)