summaryrefslogtreecommitdiffstats
path: root/src/corelib/statemachine
diff options
context:
space:
mode:
authorKent Hansen <khansen@trolltech.com>2009-06-03 09:44:28 (GMT)
committerKent Hansen <khansen@trolltech.com>2009-06-03 09:44:28 (GMT)
commitf9aa7cbaea69168a4e7b9411cfdceb9e27cf75a9 (patch)
tree63ae5bc8cae46306c6225cbc1bec6ab32a80d63a /src/corelib/statemachine
parenta3c0fd23dcac2389e20cf0731166c18374d481ec (diff)
downloadQt-f9aa7cbaea69168a4e7b9411cfdceb9e27cf75a9.zip
Qt-f9aa7cbaea69168a4e7b9411cfdceb9e27cf75a9.tar.gz
Qt-f9aa7cbaea69168a4e7b9411cfdceb9e27cf75a9.tar.bz2
fix qdoc warning
No need to link to the class in its own doc page.
Diffstat (limited to 'src/corelib/statemachine')
-rw-r--r--src/corelib/statemachine/qstatemachine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/statemachine/qstatemachine.cpp b/src/corelib/statemachine/qstatemachine.cpp
index 84619d7..be816a6 100644
--- a/src/corelib/statemachine/qstatemachine.cpp
+++ b/src/corelib/statemachine/qstatemachine.cpp
@@ -92,7 +92,7 @@ QT_BEGIN_NAMESPACE
QAbstractState) and transitions (descendants of
QAbstractTransition) between those states; these states and
transitions define a state graph. Once a state graph has been
- built, the state machine can execute it. \l{QStateMachine}'s
+ built, the state machine can execute it. QStateMachine's
execution algorithm is based on the \l{State Chart XML: State
Machine Notation for Control Abstraction}{State Chart XML (SCXML)}
algorithm. The framework's \l{The State Machine