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

Item {
    id: root

    property Component comp: OnDestructionComponent {
        property int b: 50
        onParentChanged: b += a
    }

    property Item compInstance

    Component.onCompleted: {
        compInstance = comp.createObject(root);
        compInstance.destroy();
    }
}