summaryrefslogtreecommitdiff
path: root/src/plugins/helloworld/helloworldplugin.cpp
diff options
context:
space:
mode:
authorcon <qtc-committer@nokia.com>2009-01-14 13:17:53 +0100
committercon <qtc-committer@nokia.com>2009-01-14 13:18:25 +0100
commitfbfcc9a4845c11d9b681dab8920ef15cb6c75782 (patch)
tree7f64503b79c93bf91eb48e01738feee3a5f4426a /src/plugins/helloworld/helloworldplugin.cpp
parentd9f97aa179d3441943ee7e258333bf228fa67a5d (diff)
downloadqt-creator-fbfcc9a4845c11d9b681dab8920ef15cb6c75782.tar.gz
Fixes: - ICommand --> Command
Details: - Naming convention
Diffstat (limited to 'src/plugins/helloworld/helloworldplugin.cpp')
-rw-r--r--src/plugins/helloworld/helloworldplugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/helloworld/helloworldplugin.cpp b/src/plugins/helloworld/helloworldplugin.cpp
index 31c1ced51a..08a56f2b43 100644
--- a/src/plugins/helloworld/helloworldplugin.cpp
+++ b/src/plugins/helloworld/helloworldplugin.cpp
@@ -92,12 +92,12 @@ bool HelloWorldPlugin::initialize(const QStringList &arguments, QString *error_m
// Register the action with the action manager
Core::ActionManager *actionManager = core->actionManager();
- Core::ICommand *command =
+ Core::Command *command =
actionManager->registerAction(
helloWorldAction, "HelloWorld.HelloWorldAction", context);
// Create our own menu to place in the Tools menu
- Core::IActionContainer *helloWorldMenu =
+ Core::ActionContainer *helloWorldMenu =
actionManager->createMenu("HelloWorld.HelloWorldMenu");
QMenu *menu = helloWorldMenu->menu();
menu->setTitle(tr("&Hello World"));