aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeqt/data/rect.qml
blob: b294b22c5b7eadee2b1cdb6f12b6cb9a1aa5ae4f (plain)
1
2
3
4
5
6
7
8
9
import QtQuick 2.0

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