Fixes: - Rename ActionManagerInterface --> ActionManager

Details:  - To make it conform to naming convention.
This commit is contained in:
con
2009-01-13 13:39:31 +01:00
parent 2562b09f5b
commit c9889120c3
50 changed files with 107 additions and 107 deletions

View File

@@ -91,7 +91,7 @@ bool HelloWorldPlugin::initialize(const QStringList &arguments, QString *error_m
connect(helloWorldAction, SIGNAL(triggered()), SLOT(sayHelloWorld()));
// Register the action with the action manager
Core::ActionManagerInterface *actionManager = core->actionManager();
Core::ActionManager *actionManager = core->actionManager();
Core::ICommand *command =
actionManager->registerAction(
helloWorldAction, "HelloWorld.HelloWorldAction", context);