summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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