aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlcomponent/data/nonExistentInitialProperty.qml
blob: ef89e4608837c9e27a38c5594c4a4424da4a6960 (plain)
1
2
3
4
5
6
7
8
9
import QtQml 2.0
QtObject {
    property Component factory: Qt.createComponent(Qt.resolvedUrl("InitialPropertyTest.qml"), Component.PreferSynchronous)
    property var incubator
    function startIncubation()
    {
        incubator = factory.incubateObject(null, { ok: true, nonExistent: 42 }, Qt.Asynchronous)
    }
}