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

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