aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativerepeater/data/repeater1.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativerepeater/data/repeater1.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativerepeater/data/repeater1.qml28
1 files changed, 0 insertions, 28 deletions
diff --git a/tests/auto/qtquick1/qdeclarativerepeater/data/repeater1.qml b/tests/auto/qtquick1/qdeclarativerepeater/data/repeater1.qml
deleted file mode 100644
index 2456b6d75d..0000000000
--- a/tests/auto/qtquick1/qdeclarativerepeater/data/repeater1.qml
+++ /dev/null
@@ -1,28 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- id: container
- objectName: "container"
- width: 240
- height: 320
- color: "white"
- Text {
- text: "Zero"
- }
- Repeater {
- id: repeater
- objectName: "repeater"
- width: 240
- height: 320
- model: testData
- Component {
- Text {
- y: index*20
- text: modelData
- }
- }
- }
- Text {
- text: "Last"
- }
-}