summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeqt/data/createComponent_lib.qml
blob: 33203c7e3540c4deeadfc58d1af745ba7064b672 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import Qt 4.7
import "createComponent_lib.js" as Test

Item {
    property int status: Component.Null
    property int readValue: 0

    Component.onCompleted: {
        status = Test.loadComponent()
        readValue = Test.createComponent().test;
    }
}