aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativerepeater/data/repeater2.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativerepeater/data/repeater2.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativerepeater/data/repeater2.qml36
1 files changed, 0 insertions, 36 deletions
diff --git a/tests/auto/qtquick1/qdeclarativerepeater/data/repeater2.qml b/tests/auto/qtquick1/qdeclarativerepeater/data/repeater2.qml
deleted file mode 100644
index 02ef81033c..0000000000
--- a/tests/auto/qtquick1/qdeclarativerepeater/data/repeater2.qml
+++ /dev/null
@@ -1,36 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- width: 240
- height: 320
- color: "white"
- Component {
- id: myDelegate
- Item {
- objectName: "myDelegate"
- height: 20
- width: 240
- Text {
- objectName: "myName"
- text: name
- }
- Text {
- objectName: "myNumber"
- x: 100
- text: number
- }
- }
- }
- Column {
- id: container
- objectName: "container"
- Repeater {
- id: repeater
- objectName: "repeater"
- width: 240
- height: 320
- delegate: myDelegate
- model: testData
- }
- }
-}