aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/HRMDPComponent.qml
blob: fab55fa0d14b2b538db6463d8a481b3e793357e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.0
import Qt.test.qobjectApi 1.0 as QObjectApi

Item {
    property int variantCanary: 5
    property var varCanary: 12

    Component.onCompleted: {
        QObjectApi.QObject.qobjectTestWritableProperty = 42;
    }

    Component.onDestruction: {
        QObjectApi.QObject.qobjectTestWritableProperty = 43;
    }
}