aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickvisualdatamodel/data/singlerole1.qml
blob: c471893e1d12d9b72ddc28fc4bcc45be6bfe560d (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: name; function getText() { return name; } }
    }
}