aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquickvisualdatamodel/data/itemsDestroyed_repeater.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qquickvisualdatamodel/data/itemsDestroyed_repeater.qml')
-rw-r--r--tests/auto/declarative/qquickvisualdatamodel/data/itemsDestroyed_repeater.qml15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/auto/declarative/qquickvisualdatamodel/data/itemsDestroyed_repeater.qml b/tests/auto/declarative/qquickvisualdatamodel/data/itemsDestroyed_repeater.qml
deleted file mode 100644
index e97e0dad2e..0000000000
--- a/tests/auto/declarative/qquickvisualdatamodel/data/itemsDestroyed_repeater.qml
+++ /dev/null
@@ -1,15 +0,0 @@
-import QtQuick 2.0
-
-Grid {
- Repeater {
- width: 100
- height: 100
-
- model: myModel
- delegate: Item {
- objectName: "delegate"
- width: 50
- height: 50
- }
- }
-}