aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativepathview/data/vdm.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativepathview/data/vdm.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativepathview/data/vdm.qml28
1 files changed, 0 insertions, 28 deletions
diff --git a/tests/auto/qtquick1/qdeclarativepathview/data/vdm.qml b/tests/auto/qtquick1/qdeclarativepathview/data/vdm.qml
deleted file mode 100644
index 012db3fb57..0000000000
--- a/tests/auto/qtquick1/qdeclarativepathview/data/vdm.qml
+++ /dev/null
@@ -1,28 +0,0 @@
-import QtQuick 1.0
-
-PathView {
- id: pathView
- width: 240; height: 320
-
- pathItemCount: 4
- preferredHighlightBegin : 0.5
- preferredHighlightEnd : 0.5
-
- path: Path {
- startX: 120; startY: 20;
- PathLine { x: 120; y: 300 }
- }
-
- ListModel {
- id: mo
- ListElement { value: "one" }
- ListElement { value: "two" }
- ListElement { value: "three" }
- }
-
- model: VisualDataModel {
- delegate: Text { text: model.value }
- model : mo
- }
-}
-