summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Jones <martin.jones@nokia.com>2009-09-17 06:36:47 (GMT)
committerMartin Jones <martin.jones@nokia.com>2009-09-17 06:36:47 (GMT)
commit0c2e40683007c9405b8fc9f7efbd728ef519d78f (patch)
tree5316b7c7181cff44c8204cf2042fe80a88d786e9
parent1713d5794cd578fbe1d083737647285ba7edac60 (diff)
downloadQt-0c2e40683007c9405b8fc9f7efbd728ef519d78f.zip
Qt-0c2e40683007c9405b8fc9f7efbd728ef519d78f.tar.gz
Qt-0c2e40683007c9405b8fc9f7efbd728ef519d78f.tar.bz2
Fix velocity notification.
-rw-r--r--src/declarative/fx/qfxflickable.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/declarative/fx/qfxflickable.cpp b/src/declarative/fx/qfxflickable.cpp
index c4d593c..5297516 100644
--- a/src/declarative/fx/qfxflickable.cpp
+++ b/src/declarative/fx/qfxflickable.cpp
@@ -1210,7 +1210,8 @@ void QFxFlickable::movementEnding()
void QFxFlickablePrivate::updateVelocity()
{
Q_Q(QFxFlickable);
- emit q->velocityChanged(q->horizontalVelocity(), q->verticalVelocity());
+ emit q->horizontalVelocityChanged();
+ emit q->verticalVelocityChanged();
}
QT_END_NAMESPACE