aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/singletontype/qobjectSingletonTypeCaching.qml
blob: 94921ab4e0fbfaed1663821aaa7cfe5c1b8f4eed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.0

import Qt.test 1.0 as QtTest                                      // singleton Type installed into existing uri
import Qt.test.qobjectApiParented 1.0 as QtTestParentedQObjectApi // qobject (with parent) singleton Type installed into a new uri

QtObject {
    property int existingUriTest: QtTest.QObject.qobjectTestWritableProperty
    property int qobjectParentedTest: QtTestParentedQObjectApi.QObject.qobjectTestWritableProperty

    function modifyValues() {
        QtTest.QObject.qobjectTestWritableProperty = 50;
        QtTestParentedQObjectApi.QObject.qobjectTestWritableProperty = 65;
    }
}