summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qsgvisualdatamodel/data/singlerole2.qml
blob: f8a7969ebbca5fbb420db3f54bc0afd9ce1fc00b (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.0

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