diff options
author | Thierry Bastian <thierry.bastian@nokia.com> | 2009-04-20 12:44:29 (GMT) |
---|---|---|
committer | Thierry Bastian <thierry.bastian@nokia.com> | 2009-04-20 13:28:38 (GMT) |
commit | 2e679706b28ade66cb55ace1e9bfae42dd5044ea (patch) | |
tree | 010add57eb4d9d3e60d0fd98c672c7fc94355c2b /src/corelib/animation/qsequentialanimationgroup_p.h | |
parent | 5b985f0a33946e77b133ee761613858b1057bcdd (diff) | |
download | Qt-2e679706b28ade66cb55ace1e9bfae42dd5044ea.zip Qt-2e679706b28ade66cb55ace1e9bfae42dd5044ea.tar.gz Qt-2e679706b28ade66cb55ace1e9bfae42dd5044ea.tar.bz2 |
iterationCount becomes loopCount again
Diffstat (limited to 'src/corelib/animation/qsequentialanimationgroup_p.h')
-rw-r--r-- | src/corelib/animation/qsequentialanimationgroup_p.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/animation/qsequentialanimationgroup_p.h b/src/corelib/animation/qsequentialanimationgroup_p.h index 05d2a40..3ac90f8 100644 --- a/src/corelib/animation/qsequentialanimationgroup_p.h +++ b/src/corelib/animation/qsequentialanimationgroup_p.h @@ -64,7 +64,7 @@ class QSequentialAnimationGroupPrivate : public QAnimationGroupPrivate Q_DECLARE_PUBLIC(QSequentialAnimationGroup) public: QSequentialAnimationGroupPrivate() - : currentAnimation(0), currentAnimationIndex(-1), lastIteration(0) + : currentAnimation(0), currentAnimationIndex(-1), lastLoop(0) { } @@ -96,7 +96,7 @@ public: QList<int> actualDuration; void restart(); - int lastIteration; + int lastLoop; // handle time changes void rewindForwards(const AnimationIndex &newAnimationIndex); |