summaryrefslogtreecommitdiffstats
path: root/src/corelib/animation
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@nokia.com>2009-07-19 21:24:40 (GMT)
committerVolker Hilsheimer <volker.hilsheimer@nokia.com>2009-07-19 21:24:40 (GMT)
commit3728c5221e4cd1fb15f73df8b9efba9c56531a89 (patch)
tree12c9e124ce03077bc8d8a5937447d0d5341b7d64 /src/corelib/animation
parent7a1891b2f308377e67204bbc812716cbc148af4a (diff)
downloadQt-3728c5221e4cd1fb15f73df8b9efba9c56531a89.zip
Qt-3728c5221e4cd1fb15f73df8b9efba9c56531a89.tar.gz
Qt-3728c5221e4cd1fb15f73df8b9efba9c56531a89.tar.bz2
Doc: A few cleanups, fixes and improvements.
Diffstat (limited to 'src/corelib/animation')
-rw-r--r--src/corelib/animation/qabstractanimation.cpp5
-rw-r--r--src/corelib/animation/qsequentialanimationgroup.cpp4
2 files changed, 5 insertions, 4 deletions
diff --git a/src/corelib/animation/qabstractanimation.cpp b/src/corelib/animation/qabstractanimation.cpp
index cf3e62d..ced86d2 100644
--- a/src/corelib/animation/qabstractanimation.cpp
+++ b/src/corelib/animation/qabstractanimation.cpp
@@ -643,9 +643,8 @@ void QAbstractAnimation::stop()
/*!
Pauses the animation. When the animation is paused, state() returns Paused.
- The currenttime will remain unchanged until resume() or start() is called.
- If you want to continue from the current time, call resume().
-
+ The value of currentTime will remain unchanged until resume() or start()
+ is called. If you want to continue from the current time, call resume().
\sa start(), state(), resume()
*/
diff --git a/src/corelib/animation/qsequentialanimationgroup.cpp b/src/corelib/animation/qsequentialanimationgroup.cpp
index 5932e7c..05dc307 100644
--- a/src/corelib/animation/qsequentialanimationgroup.cpp
+++ b/src/corelib/animation/qsequentialanimationgroup.cpp
@@ -269,8 +269,10 @@ QSequentialAnimationGroup::~QSequentialAnimationGroup()
/*!
Adds a pause of \a msecs to this animation group.
- The pause is considered as a special type of animation, thus count() will be
+ The pause is considered as a special type of animation, thus
+ \l{QAnimationGroup::animationCount()}{animationCount} will be
increased by one.
+
\sa insertPauseAt(), QAnimationGroup::addAnimation()
*/
QPauseAnimation *QSequentialAnimationGroup::addPause(int msecs)