aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/qqmldataDestroyed.2.qml
blob: 19222712cd4e4be868bae15783e2a638bf63fac8 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 2.0

Item {
    id: test
    property bool testConditionsMet: false
    Component.onCompleted: {
        var c = Qt.createComponent("QQmlDataDestroyedComponent2Derived.qml")
        c.createObject(test); // Cpp ownership, but it will be a RootObjectInCreation until finished beginCreate.
    }
}