forked from qt-creator/qt-creator
		
	s/error_message/errorMessage/g
Change-Id: I9a91028fb7c00a20843d99ece659ec8b7acc7710 Reviewed-on: http://codereview.qt-project.org/5312 Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
		@@ -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();
 | 
			
		||||
 
 | 
			
		||||
@@ -47,7 +47,7 @@ public:
 | 
			
		||||
    HelloWorldPlugin();
 | 
			
		||||
    ~HelloWorldPlugin();
 | 
			
		||||
 | 
			
		||||
    bool initialize(const QStringList &arguments, QString *error_message);
 | 
			
		||||
    bool initialize(const QStringList &arguments, QString *errorMessage);
 | 
			
		||||
 | 
			
		||||
    void extensionsInitialized();
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user