summaryrefslogtreecommitdiff
path: root/src/plugins/coreplugin/actionmanager
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/coreplugin/actionmanager
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/coreplugin/actionmanager')
-rw-r--r--src/plugins/coreplugin/actionmanager/actionmanager.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/coreplugin/actionmanager/actionmanager.cpp b/src/plugins/coreplugin/actionmanager/actionmanager.cpp
index 574b97cf94..9fc242dd6d 100644
--- a/src/plugins/coreplugin/actionmanager/actionmanager.cpp
+++ b/src/plugins/coreplugin/actionmanager/actionmanager.cpp
@@ -127,14 +127,14 @@ using namespace Core::Internal;
\section1 Important Guidelines:
\list
- \o Always register your actions and shortcuts!
- \o Register your actions and shortcuts during your plugin's \l{ExtensionSystem::IPlugin::initialize()}
+ \li Always register your actions and shortcuts!
+ \li Register your actions and shortcuts during your plugin's \l{ExtensionSystem::IPlugin::initialize()}
or \l{ExtensionSystem::IPlugin::extensionsInitialized()} methods, otherwise the shortcuts won't appear
in the keyboard settings dialog from the beginning.
- \o When registering an action with \c{cmd=registerAction(action, id, contexts)} be sure to connect
+ \li When registering an action with \c{cmd=registerAction(action, id, contexts)} be sure to connect
your own action \c{connect(action, SIGNAL...)} but make \c{cmd->action()} visible to the user, i.e.
\c{widget->addAction(cmd->action())}.
- \o Use this class to add actions to the applications menus
+ \li Use this class to add actions to the applications menus
\endlist
\sa Core::ICore