Commit 2f0d21bc authored by Charles Yin's avatar Charles Yin Committed by Qt by Nokia
Browse files

Add missing unintialized member in QQuickPathAnimationUpdater


Change-Id: Ia242a405949d9ca85089101c5368acd564932a05
Reviewed-by: default avatarMichael Brasser <michael.brasser@nokia.com>
parent 0799a22a
No related merge requests found
Showing with 1 addition and 1 deletion
...@@ -89,7 +89,7 @@ public: ...@@ -89,7 +89,7 @@ public:
class QQuickPathAnimationUpdater : public QQuickBulkValueUpdater class QQuickPathAnimationUpdater : public QQuickBulkValueUpdater
{ {
public: public:
QQuickPathAnimationUpdater() : path(0), target(0), reverse(false), QQuickPathAnimationUpdater() : path(0), pathLength(0), target(0), reverse(false),
fromSourced(false), fromDefined(false), toDefined(false), fromSourced(false), fromDefined(false), toDefined(false),
toX(0), toY(0), currentV(0), orientation(QQuickPathAnimation::Fixed), toX(0), toY(0), currentV(0), orientation(QQuickPathAnimation::Fixed),
entryInterval(0), exitInterval(0) {} entryInterval(0), exitInterval(0) {}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment