Refactor singleton type registration code
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / singletontype / singletonTypeMultiple.qml
1 import QtQuick 2.0
2 import Qt.test.qobjectApis 1.0
3
4 Item {
5     property int first: One.qobjectTestWritableProperty
6     property int second: Two.twoTestProperty
7
8     Component.onCompleted: {
9         One.qobjectTestWritableProperty = 35;
10     }
11 }