aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativerepeater/data/intmodel.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativerepeater/data/intmodel.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativerepeater/data/intmodel.qml29
1 files changed, 0 insertions, 29 deletions
diff --git a/tests/auto/qtquick1/qdeclarativerepeater/data/intmodel.qml b/tests/auto/qtquick1/qdeclarativerepeater/data/intmodel.qml
deleted file mode 100644
index 85e1608bbf..0000000000
--- a/tests/auto/qtquick1/qdeclarativerepeater/data/intmodel.qml
+++ /dev/null
@@ -1,29 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- id: container
- objectName: "container"
- width: 240
- height: 320
- color: "white"
-
- function checkProperties() {
- testObject.error = false;
- if (repeater.delegate != comp) {
- console.log("delegate property incorrect");
- testObject.error = true;
- }
- }
-
- Component {
- id: comp
- Item{}
- }
-
- Repeater {
- id: repeater
- objectName: "repeater"
- model: testData
- delegate: comp
- }
-}