diff options
Diffstat (limited to 'tests/auto/declarative/visual/flickable/Day.qml')
-rw-r--r-- | tests/auto/declarative/visual/flickable/Day.qml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/auto/declarative/visual/flickable/Day.qml b/tests/auto/declarative/visual/flickable/Day.qml index 549a9a0..8416724 100644 --- a/tests/auto/declarative/visual/flickable/Day.qml +++ b/tests/auto/declarative/visual/flickable/Day.qml @@ -1,24 +1,23 @@ import Qt 4.6 -Rect { +Rectangle { property string day width: 200 height: 300 radius: 7 - pen.color: "black" + border.color: "black" id: Page Image { x: 10 y: 10 source: "cork.jpg" - opaque: true } Text { x: 20 y: 20 height: 40 - font.size: 14 + font.pixelSize: 14 font.bold: true text: day style: "Outline" |