summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeqt/data/rect.qml
blob: fd3862898cc2a10c8bf33122b15ec92836fd6c45 (plain)
1
2
3
4
5
6
7
8
9
import Qt 4.7

QtObject {
    property variant test1: Qt.rect(10, 13, 100, 109)
    property variant test2: Qt.rect(-10, 13, 100, 109.6)
    property variant test3: Qt.rect(10, 13);
    property variant test4: Qt.rect(10, 13, 100, 109, 10)
    property variant test5: Qt.rect(10, 13, 100, -109)
}