aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qquickrepeater/data/initparent.qml
blob: e6571f09d3e3fc028b2935840b97a494ae8bff4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0

Item {
    id: root
    property Item parentItem: null
    Repeater {
        model: 1
        Item {
            Component.onCompleted: root.parentItem = parent
        }
    }
}