summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorBruno Abinader <bruno.abinader@openbossa.org>2009-06-16 15:47:12 (GMT)
committerDavid Boddie <dboddie@trolltech.com>2009-06-16 15:47:12 (GMT)
commit40ad0f2d00aec95a7fff9bbb1fc8fa9dec061c2a (patch)
treefc86104d767eac8757ad3fa12ea41497c20b33b7 /doc
parented358d0f8ecaff49e72accc693c3cf8f09900449 (diff)
downloadQt-40ad0f2d00aec95a7fff9bbb1fc8fa9dec061c2a.zip
Qt-40ad0f2d00aec95a7fff9bbb1fc8fa9dec061c2a.tar.gz
Qt-40ad0f2d00aec95a7fff9bbb1fc8fa9dec061c2a.tar.bz2
Fixed small typo on the animation framework documentation.
QAbstractClass is in fact QAbstractTransition, also added proper link to the addAnimation() method from that class. Signed-off-by: Bruno Abinader <bruno.abinader@openbossa.org> Merge-request: 628 Reviewed-by: David Boddie <dboddie@trolltech.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/src/animation.qdoc11
1 files changed, 6 insertions, 5 deletions
diff --git a/doc/src/animation.qdoc b/doc/src/animation.qdoc
index c16d6a2..9e52ae8 100644
--- a/doc/src/animation.qdoc
+++ b/doc/src/animation.qdoc
@@ -327,11 +327,12 @@
\section1 Animations and States
When using a \l{The State Machine Framework}{state machine}, we
- can associate an animation to a transition between states using a
- QSignalTransition or QEventTransition class. These classes are both
- derived from QAbstractClass, which defines the convenience function
- addAnimation() that enables the appending of one or more animations
- triggered when the transition occurs.
+ can associate one or more animations to a transition between states
+ using a QSignalTransition or QEventTransition class. These classes
+ are both derived from QAbstractTransition, which defines the
+ convenience function \l{QAbstractTransition::}{addAnimation()} that
+ enables the appending of one or more animations triggered when the
+ transition occurs.
We also have the possibility to associate properties with the
states rather than setting the start and end values ourselves.