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

QtObject {
    id: root

    property QtObject objectProperty

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

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