aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qquickvisualdatamodel/data/itemsDestroyed_listView.qml
blob: 103c4d2eb661a67381d71addab58736e07bf88b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.0

ListView {
    width: 100
    height: 100

    model: myModel
    delegate: Item {
        objectName: "delegate"
        width: 100
        height: 20
    }
}