aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/repeater/basic2.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qmlvisual/repeater/basic2.qml')
-rw-r--r--tests/auto/declarative/qmlvisual/repeater/basic2.qml35
1 files changed, 0 insertions, 35 deletions
diff --git a/tests/auto/declarative/qmlvisual/repeater/basic2.qml b/tests/auto/declarative/qmlvisual/repeater/basic2.qml
deleted file mode 100644
index ea14e92e21..0000000000
--- a/tests/auto/declarative/qmlvisual/repeater/basic2.qml
+++ /dev/null
@@ -1,35 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- color: "white"
- width: 120
- height: 240
- id: page
- Component {
- id: delegate
- Rectangle {
- color: "thistle"
- width: 100
- height: 100
- Rectangle {
- anchors.centerIn: parent
- width: 60
- height: 60
- color: name
- }
- }
- }
- Column{
- Repeater{
- delegate: delegate
- model: ListModel {
- ListElement {
- name: "palegoldenrod"
- }
- ListElement {
- name: "lightsteelblue"
- }
- }
- }
- }
-}