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

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)
}