Rename QDeclarative symbols to QQuick and QQml
[profile/ivi/qtdeclarative.git] / tests / auto / quick / qquickxmllistmodel / data / recipes.qml
1 import QtQuick 2.0
2 import QtQuick.XmlListModel 2.0
3
4 XmlListModel {
5     source: "recipes.xml"
6     query: "/recipes/recipe"
7     XmlRole { name: "title"; query: "@title/string()" }
8     XmlRole { name: "picture"; query: "picture/string()" }
9     XmlRole { name: "ingredients"; query: "ingredients/string()" }
10     XmlRole { name: "preparation"; query: "method/string()" }
11 }