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

PathView {
    width: 100
    height: 100

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

    path: Path {
        startX: 50; startY: 0
        PathLine { x: 50; y: 100 }
    }
}