aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativexmllistmodel/data/model.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativexmllistmodel/data/model.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativexmllistmodel/data/model.qml10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/auto/qtquick1/qdeclarativexmllistmodel/data/model.qml b/tests/auto/qtquick1/qdeclarativexmllistmodel/data/model.qml
deleted file mode 100644
index fdacb6c445..0000000000
--- a/tests/auto/qtquick1/qdeclarativexmllistmodel/data/model.qml
+++ /dev/null
@@ -1,10 +0,0 @@
-import QtQuick 1.0
-
-XmlListModel {
- source: "model.xml"
- query: "/Pets/Pet"
- XmlRole { name: "name"; query: "name/string()" }
- XmlRole { name: "type"; query: "type/string()" }
- XmlRole { name: "age"; query: "age/number()" }
- XmlRole { name: "size"; query: "size/string()" }
-}