aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativexmllistmodel/data/roleErrors.qml
blob: a0d846f18862cbc9c71c8db47b63beb9620e5e1c (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 1.0

XmlListModel {
    source: "model.xml"
    query: "/Pets/Pet"
    XmlRole { name: "name"; query: "/name/string()" }   //starts with '/'
    XmlRole { name: "type"; query: "type" }             //no type
    XmlRole { name: "age"; query: "age/" }              //ends with '/'
    XmlRole { name: "size"; query: "size/number()" }    //wrong type
}