aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquickvisualdatamodel/data/itemsDestroyed_repeater.qml
blob: e97e0dad2e274ba92c44d9fa258aa3be05cd1923 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.0

Grid {
    Repeater {
        width: 100
        height: 100

        model: myModel
        delegate: Item {
            objectName: "delegate"
            width: 50
            height: 50
        }
    }
}