aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/ListView/basic4.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qmlvisual/ListView/basic4.qml')
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/basic4.qml36
1 files changed, 0 insertions, 36 deletions
diff --git a/tests/auto/declarative/qmlvisual/ListView/basic4.qml b/tests/auto/declarative/qmlvisual/ListView/basic4.qml
deleted file mode 100644
index 2c5d1e3eae..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/basic4.qml
+++ /dev/null
@@ -1,36 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- color: "blue"
- width: 200
- height: 300
- id: page
- ListModel {
- id: model
- ListElement {
- name: "palegoldenrod"
- }
- ListElement {
- name: "lightsteelblue"
- }
- }
- Component {
- id: delegate
- Rectangle {
- color: "red"
- width: 100
- height: 100
- Rectangle {
- anchors.centerIn: parent
- width: 60
- height: 60
- color: name
- }
- }
- }
- ListView {
- anchors.fill: parent
- model: model
- delegate: delegate
- }
-}