summaryrefslogtreecommitdiffstats
path: root/src/corelib/statemachine
diff options
context:
space:
mode:
authorKent Hansen <khansen@trolltech.com>2009-07-22 08:28:03 (GMT)
committerKent Hansen <khansen@trolltech.com>2009-07-22 08:28:03 (GMT)
commitcdff58107507a1a7a2d81e8b824d1c5361a77905 (patch)
tree5c74bc6e608259db71117250b3e0bee553769fcf /src/corelib/statemachine
parente43eae35b242bf90c801e719d61fff4a20549ead (diff)
downloadQt-cdff58107507a1a7a2d81e8b824d1c5361a77905.zip
Qt-cdff58107507a1a7a2d81e8b824d1c5361a77905.tar.gz
Qt-cdff58107507a1a7a2d81e8b824d1c5361a77905.tar.bz2
delete incorrect documentation
Diffstat (limited to 'src/corelib/statemachine')
-rw-r--r--src/corelib/statemachine/qabstracttransition.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/corelib/statemachine/qabstracttransition.cpp b/src/corelib/statemachine/qabstracttransition.cpp
index c040c58..670aa7d 100644
--- a/src/corelib/statemachine/qabstracttransition.cpp
+++ b/src/corelib/statemachine/qabstracttransition.cpp
@@ -330,18 +330,6 @@ QList<QAbstractAnimation*> QAbstractTransition::animations() const
This function is called to determine whether the given \a event should cause
this transition to trigger. Reimplement this function and return true if the
event should trigger the transition, otherwise return false.
-
-
- Note that \a event is a QWrappedEvent, which contains a clone of
- the event generated by Qt. For instance, if you want to check a
- key press event, do the following:
-
- \snippet doc/src/snippets/statemachine/eventtest.cpp 0
-
- You need to check if \a event is a QWrappedEvent because Qt also
- uses other events for internal reasons; you don't need to concern
- yourself with these in any case.
-
*/
/*!