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