summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorJoona Petrell <joona.t.petrell@nokia.com>2011-01-10 05:54:54 (GMT)
committerJoona Petrell <joona.t.petrell@nokia.com>2011-01-11 01:24:29 (GMT)
commit9fbe02cf8a76d4cca0a28d9fb92a2b181494c82d (patch)
tree9a58c5159b3fea0f7028dc08078275b350af819c /examples
parent7ca750fad4e74929c9c34a98c19bde37747a9dc5 (diff)
downloadQt-9fbe02cf8a76d4cca0a28d9fb92a2b181494c82d.zip
Qt-9fbe02cf8a76d4cca0a28d9fb92a2b181494c82d.tar.gz
Qt-9fbe02cf8a76d4cca0a28d9fb92a2b181494c82d.tar.bz2
Fix examples autotest failure
Task-number: Reviewed-by: Martin Jones
Diffstat (limited to 'examples')
-rw-r--r--examples/declarative/touchinteraction/pincharea/flickresize.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/touchinteraction/pincharea/flickresize.qml b/examples/declarative/touchinteraction/pincharea/flickresize.qml
index aa426e7..a2f81ff 100644
--- a/examples/declarative/touchinteraction/pincharea/flickresize.qml
+++ b/examples/declarative/touchinteraction/pincharea/flickresize.qml
@@ -54,7 +54,7 @@ Rectangle {
PinchArea {
width: Math.max(flick.contentWidth, flick.width)
height: Math.max(flick.contentHeight, flick.height)
- onPinchChanged: {
+ onPinchUpdated: {
// adjust content pos due to drag
flick.contentX += pinch.previousCenter.x - pinch.center.x
flick.contentY += pinch.previousCenter.y - pinch.center.y