aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlincubator/data/statusChanged.nested.qml
blob: 3a496ea6fe12688b091a33972e38f730e5db5940 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0

QtObject {
    id: root

    property bool test: false

    Component.onCompleted: {
        var c = Qt.createComponent("statusChanged.qml");
        c.incubateObject(root, null, Qt.Synchronous);
    }
}