Doc: replace deprecated QDoc commands

The \i and \o commands were replaced with \li and
\bold was replaced with \b in QDoc for Qt 5.

The \input command was replaced with \include in the docs.

Change-Id: I257d1bebb8ebc739ca20e0d29fcf0406ecb14534
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
This commit is contained in:
Leena Miettinen
2013-02-06 08:50:23 +01:00
committed by Oswald Buddenhagen
parent 276320caac
commit 419c6de735
133 changed files with 2773 additions and 2773 deletions

View File

@@ -53,12 +53,12 @@ using namespace ProjectExplorer;
Usage:
\list
\o Use processParameters() to configure the process you want to run
\li Use processParameters() to configure the process you want to run
(you need to do that before calling AbstractProcessStep::init()).
\o Inside YourBuildStep::init() call AbstractProcessStep::init().
\o Inside YourBuildStep::run() call AbstractProcessStep::run(), which automatically starts the proces
\li Inside YourBuildStep::init() call AbstractProcessStep::init().
\li Inside YourBuildStep::run() call AbstractProcessStep::run(), which automatically starts the process
and by default adds the output on stdOut and stdErr to the OutputWindow.
\o If you need to process the process output override stdOut() and/or stdErr.
\li If you need to process the process output override stdOut() and/or stdErr.
\endlist
The two functions processStarted() and processFinished() are called after starting/finishing the process.