tests/auto/declarative/qdeclarativeqt/data/rect.qml
changeset 30 5dc02b23752f
equal deleted inserted replaced
29:b72c6db6890b 30:5dc02b23752f
       
     1 import Qt 4.7
       
     2 
       
     3 QtObject {
       
     4     property variant test1: Qt.rect(10, 13, 100, 109)
       
     5     property variant test2: Qt.rect(-10, 13, 100, 109.6)
       
     6     property variant test3: Qt.rect(10, 13);
       
     7     property variant test4: Qt.rect(10, 13, 100, 109, 10)
       
     8     property variant test5: Qt.rect(10, 13, 100, -109)
       
     9 }