aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquickgridview/data/asyncloader.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qquickgridview/data/asyncloader.qml')
-rw-r--r--tests/auto/declarative/qquickgridview/data/asyncloader.qml36
1 files changed, 0 insertions, 36 deletions
diff --git a/tests/auto/declarative/qquickgridview/data/asyncloader.qml b/tests/auto/declarative/qquickgridview/data/asyncloader.qml
deleted file mode 100644
index ab66f20a1e..0000000000
--- a/tests/auto/declarative/qquickgridview/data/asyncloader.qml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-import QtQuick 2.0
-
-Rectangle {
- id: root
- width: 300; height: 400
- color: "#2200FF00"
-
- Loader {
- asynchronous: true
- sourceComponent: viewComp
- anchors.fill: parent
- }
-
- Component {
- id: viewComp
- GridView {
- objectName: "view"
- width: 300; height: 400
- model: 40
- delegate: aDelegate
-
- highlight: Rectangle { color: "lightsteelblue" }
- }
- }
- // The delegate for each list
- Component {
- id: aDelegate
- Item {
- objectName: "wrapper"
- width: 100
- height: 100
- Text { text: 'Index: ' + index }
- }
- }
-}