aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtDeclarative/connect_python_qml.qml
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.pl@gmail.com>2010-12-28 14:50:46 -0200
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:48:05 -0300
commit92b893c53242a191b76291f8fb0ce68fd284c115 (patch)
tree4a8e4e5da01122dc1e48e4a6aeb72c3fccbde7a5 /tests/QtDeclarative/connect_python_qml.qml
parent6d18229268b42db54824cc277e339bac34ad3404 (diff)
Fix bug#563 - "Unhandled signal emitting with invalid signature (which leads to application crash)"
Diffstat (limited to 'tests/QtDeclarative/connect_python_qml.qml')
-rw-r--r--tests/QtDeclarative/connect_python_qml.qml20
1 files changed, 10 insertions, 10 deletions
diff --git a/tests/QtDeclarative/connect_python_qml.qml b/tests/QtDeclarative/connect_python_qml.qml
index dbf890f6f..df55e1b16 100644
--- a/tests/QtDeclarative/connect_python_qml.qml
+++ b/tests/QtDeclarative/connect_python_qml.qml
@@ -6,15 +6,15 @@ Rectangle {
color: "lightgray"
Rectangle {
- id: button
- width: 150; height: 40
- color: "darkgray"
- anchors.horizontalCenter: page.horizontalCenter
- y: 150
- MouseArea {
- id: buttonMouseArea
- objectName: "buttonMouseArea"
- anchors.fill: parent
- }
+ id: button
+ width: 150; height: 40
+ color: "darkgray"
+ anchors.horizontalCenter: page.horizontalCenter
+ y: 150
+ MouseArea {
+ id: buttonMouseArea
+ objectName: "buttonMouseArea"
+ anchors.fill: parent
+ }
}
}