Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativevisualdatamodel / data / singlerole2.qml
1 import QtQuick 1.0
2
3 ListView {
4     width: 100
5     height: 100
6     anchors.fill: parent
7     model: myModel
8     delegate: Component {
9         Text { objectName: "name"; text: modelData }
10     }
11 }