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

QtObject {
    id: root

    property QtObject objectProperty

    property Component c: Component {
        id: componentObject
        QtObject {
        }
    }

    function create() {
        objectProperty = c.createObject(root);
    }
    
    function destroy() {
        objectProperty.destroy();
    }
}