summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@digia.com>2013-02-06 08:50:23 +0100
committerOswald Buddenhagen <oswald.buddenhagen@digia.com>2013-02-06 09:44:18 +0100
commit419c6de73536a4a0bb59d679f8f557635c7cef53 (patch)
treefaf61a3de1c19a763259fa748cf32e74652500f3 /src/plugins/projectexplorer
parent276320caac4f0fd6399974a15a636a92ea6a7cfa (diff)
downloadqt-creator-419c6de73536a4a0bb59d679f8f557635c7cef53.tar.gz
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>
Diffstat (limited to 'src/plugins/projectexplorer')
-rw-r--r--src/plugins/projectexplorer/abstractprocessstep.cpp8
-rw-r--r--src/plugins/projectexplorer/customwizard/customwizardparameters.cpp12
-rw-r--r--src/plugins/projectexplorer/customwizard/customwizardscriptgenerator.cpp4
-rw-r--r--src/plugins/projectexplorer/devicesupport/deviceprocessesdialog.cpp4
-rw-r--r--src/plugins/projectexplorer/projectfilewizardextension.cpp4
5 files changed, 16 insertions, 16 deletions
diff --git a/src/plugins/projectexplorer/abstractprocessstep.cpp b/src/plugins/projectexplorer/abstractprocessstep.cpp
index ad6ee8c24c..a5b6428964 100644
--- a/src/plugins/projectexplorer/abstractprocessstep.cpp
+++ b/src/plugins/projectexplorer/abstractprocessstep.cpp
@@ -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.
diff --git a/src/plugins/projectexplorer/customwizard/customwizardparameters.cpp b/src/plugins/projectexplorer/customwizard/customwizardparameters.cpp
index 37e8a25c07..87d84c721f 100644
--- a/src/plugins/projectexplorer/customwizard/customwizardparameters.cpp
+++ b/src/plugins/projectexplorer/customwizard/customwizardparameters.cpp
@@ -908,12 +908,12 @@ bool replaceFieldHelper(ValueStringTransformation transform,
Replace field values delimited by '%' with special modifiers:
\list
- \o %Field% -> simple replacement
- \o %Field:l% -> replace with everything changed to lower case
- \o %Field:u% -> replace with everything changed to upper case
- \o %Field:c% -> replace with first character capitalized
- \o %Field:h% -> replace with something usable as header guard
- \o %Field:s% -> replace with something usable as structure or class name
+ \li %Field% -> simple replacement
+ \li %Field:l% -> replace with everything changed to lower case
+ \li %Field:u% -> replace with everything changed to upper case
+ \li %Field:c% -> replace with first character capitalized
+ \li %Field:h% -> replace with something usable as header guard
+ \li %Field:s% -> replace with something usable as structure or class name
\endlist
The return value indicates whether non-empty replacements were encountered.
diff --git a/src/plugins/projectexplorer/customwizard/customwizardscriptgenerator.cpp b/src/plugins/projectexplorer/customwizard/customwizardscriptgenerator.cpp
index db638aecaa..438a20d204 100644
--- a/src/plugins/projectexplorer/customwizard/customwizardscriptgenerator.cpp
+++ b/src/plugins/projectexplorer/customwizard/customwizardscriptgenerator.cpp
@@ -226,12 +226,12 @@ Core::GeneratedFiles
As Qt Creator needs to know the file names before actually creates them to
do overwrite checking etc., this is 2-step process:
\list
- \o Determine file names and attributes: The script is called with the
+ \li Determine file names and attributes: The script is called with the
\c --dry-run option and the field values. It then prints the relative path
names it intends to create followed by comma-separated attributes
matching those of the \c <file> element, for example:
\c myclass.cpp,openeditor
- \o The script is called with the parameters only in the working directory
+ \li The script is called with the parameters only in the working directory
and then actually creates the files. If that involves directories, the script
should create those, too.
\endlist
diff --git a/src/plugins/projectexplorer/devicesupport/deviceprocessesdialog.cpp b/src/plugins/projectexplorer/devicesupport/deviceprocessesdialog.cpp
index ae3e896658..6025395d08 100644
--- a/src/plugins/projectexplorer/devicesupport/deviceprocessesdialog.cpp
+++ b/src/plugins/projectexplorer/devicesupport/deviceprocessesdialog.cpp
@@ -299,9 +299,9 @@ DeviceProcess DeviceProcessesDialogPrivate::selectedProcess() const
The dialog can be used as a
\list
- \o Non-modal dialog showing a list of processes: Call addCloseButton()
+ \li Non-modal dialog showing a list of processes: Call addCloseButton()
to add a 'Close' button.
- \o Modal dialog with an 'Accept' button to select a process: Call
+ \li Modal dialog with an 'Accept' button to select a process: Call
addAcceptButton() passing the label text. This will create a
'Cancel' button as well.
\endlist
diff --git a/src/plugins/projectexplorer/projectfilewizardextension.cpp b/src/plugins/projectexplorer/projectfilewizardextension.cpp
index 28b9de349a..c4fca9ea4e 100644
--- a/src/plugins/projectexplorer/projectfilewizardextension.cpp
+++ b/src/plugins/projectexplorer/projectfilewizardextension.cpp
@@ -69,8 +69,8 @@
Offers:
\list
- \o Add to a project file (*.pri/ *.pro)
- \o Initialize a version control repository (unless the path is already
+ \li Add to a project file (*.pri/ *.pro)
+ \li Initialize a version control repository (unless the path is already
managed) and do 'add' if the VCS supports it.
\endlist