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