summaryrefslogtreecommitdiffstats
path: root/src/corelib/statemachine
diff options
context:
space:
mode:
authorNico Vertriest <nico.vertriest@digia.com>2012-12-11 10:42:11 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-12-11 13:37:57 +0100
commitbe0ef46b1d1aae1eeef399aae3c5f9853b9e1925 (patch)
treee3938994d9decd3e3ab8500cf6ea98a88b121dd7 /src/corelib/statemachine
parent6694d391316a490674ecb97f64e1c2e82328d2ce (diff)
Inserted hardcoded urls for State Charts and S. C. XML
Corrected in qstatemachine QTBUG-28500 Change-Id: I45b2ffea983ee5754b080b8a6faa18d4d163e578 Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'src/corelib/statemachine')
-rw-r--r--src/corelib/statemachine/qstatemachine.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/corelib/statemachine/qstatemachine.cpp b/src/corelib/statemachine/qstatemachine.cpp
index bf33500676..0d0bb45738 100644
--- a/src/corelib/statemachine/qstatemachine.cpp
+++ b/src/corelib/statemachine/qstatemachine.cpp
@@ -86,17 +86,15 @@ QT_BEGIN_NAMESPACE
\ingroup statemachine
QStateMachine is based on the concepts and notation of
- \l{Statecharts: A visual formalism for complex
- systems}{Statecharts}. QStateMachine is part of \l{The State
- Machine Framework}.
+ \l{http://www.wisdom.weizmann.ac.il/~dharel/SCANNED.PAPERS/Statecharts.pdf}{Statecharts}.
+ QStateMachine is part of \l{The State Machine Framework}.
A state machine manages a set of states (classes that inherit from
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. QStateMachine's
- execution algorithm is based on the \l{State Chart XML: State
- Machine Notation for Control Abstraction}{State Chart XML (SCXML)}
+ execution algorithm is based on the \l{http://www.w3.org/TR/scxml/}{State Chart XML (SCXML)}
algorithm. The framework's \l{The State Machine
Framework}{overview} gives several state graphs and the code to
build them.