aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativepathview/data/undefinedpath.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativepathview/data/undefinedpath.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativepathview/data/undefinedpath.qml17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/auto/qtquick1/qdeclarativepathview/data/undefinedpath.qml b/tests/auto/qtquick1/qdeclarativepathview/data/undefinedpath.qml
deleted file mode 100644
index 5a647cb079..0000000000
--- a/tests/auto/qtquick1/qdeclarativepathview/data/undefinedpath.qml
+++ /dev/null
@@ -1,17 +0,0 @@
-import QtQuick 1.0
-
-PathView {
- id: pathView
- width: 240; height: 200
- path: Path {
- startX: pathView.undef/2.0; startY: 0
- PathLine { x: pathView.undef/2.0; y: 0 }
- }
-
- delegate: Text { text: value }
- model: ListModel {
- ListElement { value: "one" }
- ListElement { value: "two" }
- ListElement { value: "three" }
- }
-}