aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquickvisualdatamodel/data/itemsDestroyed_pathView.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qquickvisualdatamodel/data/itemsDestroyed_pathView.qml')
-rw-r--r--tests/auto/declarative/qquickvisualdatamodel/data/itemsDestroyed_pathView.qml18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/auto/declarative/qquickvisualdatamodel/data/itemsDestroyed_pathView.qml b/tests/auto/declarative/qquickvisualdatamodel/data/itemsDestroyed_pathView.qml
deleted file mode 100644
index bc619124fd..0000000000
--- a/tests/auto/declarative/qquickvisualdatamodel/data/itemsDestroyed_pathView.qml
+++ /dev/null
@@ -1,18 +0,0 @@
-import QtQuick 2.0
-
-PathView {
- width: 100
- height: 100
-
- model: myModel
- delegate: Item {
- objectName: "delegate"
- width: 100
- height: 20
- }
-
- path: Path {
- startX: 50; startY: 0
- PathLine { x: 50; y: 100 }
- }
-}