diff options
author | Kent Hansen <khansen@trolltech.com> | 2009-09-28 17:08:00 (GMT) |
---|---|---|
committer | Kent Hansen <khansen@trolltech.com> | 2009-09-29 10:02:09 (GMT) |
commit | d557d6e5dc73c88f9de26bf2e3dd2c6955400467 (patch) | |
tree | c37b92f2bc9d106967ee7ce18e57594f64cd6724 /src/corelib/statemachine | |
parent | f10dc46c0a0763df4e136bd4664b68e1a1388ad6 (diff) | |
download | Qt-d557d6e5dc73c88f9de26bf2e3dd2c6955400467.zip Qt-d557d6e5dc73c88f9de26bf2e3dd2c6955400467.tar.gz Qt-d557d6e5dc73c88f9de26bf2e3dd2c6955400467.tar.bz2 |
doc: Describe the semantics of targetless state machine transitions
Diffstat (limited to 'src/corelib/statemachine')
-rw-r--r-- | src/corelib/statemachine/qabstracttransition.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/corelib/statemachine/qabstracttransition.cpp b/src/corelib/statemachine/qabstracttransition.cpp index 8b858c7..76baa0a 100644 --- a/src/corelib/statemachine/qabstracttransition.cpp +++ b/src/corelib/statemachine/qabstracttransition.cpp @@ -93,6 +93,10 @@ QT_BEGIN_NAMESPACE \property QAbstractTransition::targetState \brief the target state of this transition + + If a transition has no target state, the transition may still be + triggered, but this will not cause the state machine's configuration to + change (i.e. the current state will not be exited and re-entered). */ /*! |