diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-10-09 01:10:43 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-10-09 01:15:29 (GMT) |
commit | b957118a2d2f44cec5f1a0709da26a5c685cc344 (patch) | |
tree | ff6375ac4eee91bf6a8531ee817f74976377f4d5 /examples/declarative/layouts | |
parent | 931350a9cb24f30e6fd6c227dbdc40937d59a705 (diff) | |
download | Qt-b957118a2d2f44cec5f1a0709da26a5c685cc344.zip Qt-b957118a2d2f44cec5f1a0709da26a5c685cc344.tar.gz Qt-b957118a2d2f44cec5f1a0709da26a5c685cc344.tar.bz2 |
Fix example errors
Diffstat (limited to 'examples/declarative/layouts')
-rw-r--r-- | examples/declarative/layouts/Button.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/declarative/layouts/Button.qml b/examples/declarative/layouts/Button.qml index 6c2fd8d..1fa0dee 100644 --- a/examples/declarative/layouts/Button.qml +++ b/examples/declarative/layouts/Button.qml @@ -1,16 +1,16 @@ import Qt 4.6 -Rectangle { border.color: "black"; color: "steelblue"; radius: 5; width: pix.width + text.width + 13; height: pix.height + 10; id: page +Rectangle { border.color: "black"; color: "steelblue"; radius: 5; width: pix.width + textelement.width + 13; height: pix.height + 10; id: page property string text property string icon signal clicked Image { id: pix; x: 5; y:5; source: parent.icon} - Text { id: text; text: page.text; color: "white"; x:pix.width+pix.x+3; anchors.verticalCenter: pix.verticalCenter;} + Text { id: textelement; text: page.text; color: "white"; x:pix.width+pix.x+3; anchors.verticalCenter: pix.verticalCenter;} MouseRegion{ id:mr; anchors.fill: parent; onClicked: {parent.focus = true; page.clicked()}} states: State{ name:"pressed"; when:mr.pressed - PropertyChanges {target:text; x: 5} - PropertyChanges {target:pix; x:text.x+text.width + 3} + PropertyChanges {target:textelement; x: 5} + PropertyChanges {target:pix; x:textelement.x+textelement.width + 3} } transitions: |