summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativevisualdatamodel/data/singlerole2.qml
blob: 6654d6beec71fb29c7e3497f445699b6849c2adf (plain)
1
2
3
4
5
6
7
8
9
10
11
import Qt 4.7

ListView {
    width: 100
    height: 100
    anchors.fill: parent
    model: myModel
    delegate: Component {
        Text { objectName: "name"; text: modelData }
    }
}