aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/ListView/basic4.qml
diff options
context:
space:
mode:
authorMartin Jones <martin.jones@nokia.com>2011-05-30 11:23:22 +1000
committerMartin Jones <martin.jones@nokia.com>2011-05-30 11:23:22 +1000
commit0063c93d1ca1cc69b890e6263b95f18a7667b6ff (patch)
tree1e77bb6c8f49499e6d0012984d947105b0ac9084 /tests/auto/declarative/qmlvisual/ListView/basic4.qml
parent481eb161412b33222a74570183f74220265d19b9 (diff)
qmlvisual is broken and unmaintained. Remove it.
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
- }
-}