summaryrefslogtreecommitdiff
path: root/src/plugins/helloworld/helloworldplugin.cpp
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2011-09-21 13:05:15 +0200
committerhjk <qthjk@ovi.com>2011-09-21 13:06:52 +0200
commit7bfde77d7c6beeb833e09fa061b16be43f515a62 (patch)
tree952a277f4ca1c9d33b52b60a213d7db4e20a4e9d /src/plugins/helloworld/helloworldplugin.cpp
parent56a05bf2870b0a5130dcdd4cf3d90fc0202394db (diff)
downloadqt-creator-7bfde77d7c6beeb833e09fa061b16be43f515a62.tar.gz
s/error_message/errorMessage/g
Change-Id: I9a91028fb7c00a20843d99ece659ec8b7acc7710 Reviewed-on: http://codereview.qt-project.org/5312 Reviewed-by: hjk <qthjk@ovi.com>
Diffstat (limited to 'src/plugins/helloworld/helloworldplugin.cpp')
-rw-r--r--src/plugins/helloworld/helloworldplugin.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/helloworld/helloworldplugin.cpp b/src/plugins/helloworld/helloworldplugin.cpp
index 905df9d0c7..6f7812f2de 100644
--- a/src/plugins/helloworld/helloworldplugin.cpp
+++ b/src/plugins/helloworld/helloworldplugin.cpp
@@ -88,13 +88,13 @@ HelloWorldPlugin::~HelloWorldPlugin()
/*! Initializes the plugin. Returns true on success.
Plugins want to register objects with the plugin manager here.
- \a error_message can be used to pass an error message to the plugin system,
+ \a errorMessage can be used to pass an error message to the plugin system,
if there was any.
*/
-bool HelloWorldPlugin::initialize(const QStringList &arguments, QString *error_message)
+bool HelloWorldPlugin::initialize(const QStringList &arguments, QString *errorMessage)
{
Q_UNUSED(arguments)
- Q_UNUSED(error_message)
+ Q_UNUSED(errorMessage)
// Get the primary access point to the workbench.
Core::ICore *core = Core::ICore::instance();