summaryrefslogtreecommitdiff
path: root/doc/pluginhowto/examples/menu/respondingtomenuitems/donothingplugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'doc/pluginhowto/examples/menu/respondingtomenuitems/donothingplugin.cpp')
-rw-r--r--doc/pluginhowto/examples/menu/respondingtomenuitems/donothingplugin.cpp15
1 files changed, 5 insertions, 10 deletions
diff --git a/doc/pluginhowto/examples/menu/respondingtomenuitems/donothingplugin.cpp b/doc/pluginhowto/examples/menu/respondingtomenuitems/donothingplugin.cpp
index 77ea0367c4..75429c6be9 100644
--- a/doc/pluginhowto/examples/menu/respondingtomenuitems/donothingplugin.cpp
+++ b/doc/pluginhowto/examples/menu/respondingtomenuitems/donothingplugin.cpp
@@ -57,20 +57,15 @@ DoNothingPlugin::DoNothingPlugin()
// Do nothing
}
-DoNothingPlugin::~DoNothingPlugin()
-{
- // Do notning
-}
-
void DoNothingPlugin::extensionsInitialized()
{
// Do nothing
}
-bool DoNothingPlugin::initialize(const QStringList &args, QString *errMsg)
+bool DoNothingPlugin::initialize(const QStringList &args, QString *errorMessage)
{
Q_UNUSED(args);
- Q_UNUSED(errMsg);
+ Q_UNUSED(errorMessage);
// Fetch the action manager
Core::ActionManager *am = Core::ICore::instance()->actionManager();
@@ -78,11 +73,11 @@ bool DoNothingPlugin::initialize(const QStringList &args, QString *errMsg)
// Create a command for "DoNothing".
QAction *action = new QAction(tr("DoNothing"),this);
Core::Command *cmd = am->registerAction(action,
- QLatin1String("DoNothingPlugin.DoNothing"),
- Core::Context(Core::Constants::C_GLOBAL));
+ "DoNothingPlugin.DoNothing", Core::Context(Core::Constants::C_GLOBAL));
// Add the "DoNothing" action to the tools menu
- am->actionContainer(Core::Constants::M_TOOLS)->addAction(cmd, Core::Constants::G_DEFAULT_THREE);
+ am->actionContainer(Core::Constants::M_TOOLS)
+ ->addAction(cmd, Core::Constants::G_DEFAULT_THREE);
// Connect the action
connect(action, SIGNAL(triggered(bool)), this, SLOT(performAction()));