summaryrefslogtreecommitdiffstats
path: root/examples/widgets/doc/factorial.qdoc
diff options
context:
space:
mode:
authorAndy Nichols <andy.nichols@nokia.com>2012-08-21 16:13:49 +0200
committerQt by Nokia <qt-info@nokia.com>2012-08-23 11:20:37 +0200
commitfc924ae47e73a5b41e274a723d8f7cdefe921c4f (patch)
tree560b0969b970c262c5ebbc9eaa4d23157f103e19 /examples/widgets/doc/factorial.qdoc
parent8e0bac89d4b0f01b71c57f79a3b98a6ecb7f20ae (diff)
Doc: Fix snippet and example referencing widget examples
Widget examples were moved into a widgets subfolder, but qdoc references were not updated. Change-Id: Id2a4573e723745b9827c664c852807d6116f8f6d Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
Diffstat (limited to 'examples/widgets/doc/factorial.qdoc')
-rw-r--r--examples/widgets/doc/factorial.qdoc16
1 files changed, 8 insertions, 8 deletions
diff --git a/examples/widgets/doc/factorial.qdoc b/examples/widgets/doc/factorial.qdoc
index 82ab5da536..250fdcc2b7 100644
--- a/examples/widgets/doc/factorial.qdoc
+++ b/examples/widgets/doc/factorial.qdoc
@@ -26,7 +26,7 @@
****************************************************************************/
/*!
- \example statemachine/factorial
+ \example widgets/statemachine/factorial
\title Factorial States Example
The Factorial States example shows how to use \l{The State Machine
@@ -42,42 +42,42 @@
In other words, the state machine calculates the factorial of 6 and prints
the result.
- \snippet statemachine/factorial/main.cpp 0
+ \snippet widgets/statemachine/factorial/main.cpp 0
The Factorial class is used to hold the data of the computation, \c x and
\c fac. It also provides a signal that's emitted whenever the value of \c
x changes.
- \snippet statemachine/factorial/main.cpp 1
+ \snippet widgets/statemachine/factorial/main.cpp 1
The FactorialLoopTransition class implements the guard (\c x > 1) and
calculations (\c fac = \c x * \c fac; \c x = \c x - 1) of the factorial
loop.
- \snippet statemachine/factorial/main.cpp 2
+ \snippet widgets/statemachine/factorial/main.cpp 2
The FactorialDoneTransition class implements the guard (\c x <= 1) that
terminates the factorial computation. It also prints the final result to
standard output.
- \snippet statemachine/factorial/main.cpp 3
+ \snippet widgets/statemachine/factorial/main.cpp 3
The application's main() function first creates the application object, a
Factorial object and a state machine.
- \snippet statemachine/factorial/main.cpp 4
+ \snippet widgets/statemachine/factorial/main.cpp 4
The \c compute state is created, and the initial values of \c x and \c fac
are defined. A FactorialLoopTransition object is created and added to the
state.
- \snippet statemachine/factorial/main.cpp 5
+ \snippet widgets/statemachine/factorial/main.cpp 5
A final state, \c done, is created, and a FactorialDoneTransition object
is created with \c done as its target state. The transition is then added
to the \c compute state.
- \snippet statemachine/factorial/main.cpp 6
+ \snippet widgets/statemachine/factorial/main.cpp 6
The machine's initial state is set to be the \c compute state. We connect
the QStateMachine::finished() signal to the QCoreApplication::quit() slot,