aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativepathview/data/treemodel.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativepathview/data/treemodel.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativepathview/data/treemodel.qml19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/auto/qtquick1/qdeclarativepathview/data/treemodel.qml b/tests/auto/qtquick1/qdeclarativepathview/data/treemodel.qml
deleted file mode 100644
index 56f7ae46da..0000000000
--- a/tests/auto/qtquick1/qdeclarativepathview/data/treemodel.qml
+++ /dev/null
@@ -1,19 +0,0 @@
-import QtQuick 1.0
-
-PathView {
- width: 320
- height: 240
- function setRoot(index) {
- vdm.rootIndex = vdm.modelIndex(index);
- }
- model: VisualDataModel {
- id: vdm
- model: myModel
- delegate: Text { objectName: "wrapper"; text: display }
- }
-
- path: Path {
- startX: 0; startY: 120
- PathLine { x: 320; y: 120 }
- }
-}