forked from qt-creator/qt-creator
Bazaar: mark unused parameters with Q_UNUSED
Merge-request: 272 Reviewed-by: Tobias Hunger <tobias.hunger@nokia.com>
This commit is contained in:
@@ -147,8 +147,11 @@ BazaarPlugin::~BazaarPlugin()
|
||||
m_instance = 0;
|
||||
}
|
||||
|
||||
bool BazaarPlugin::initialize(const QStringList &/*arguments*/, QString * /*errorMessage*/)
|
||||
bool BazaarPlugin::initialize(const QStringList &arguments, QString *errorMessage)
|
||||
{
|
||||
Q_UNUSED(arguments);
|
||||
Q_UNUSED(errorMessage);
|
||||
|
||||
typedef VCSBase::VCSEditorFactory<BazaarEditor> BazaarEditorFactory;
|
||||
|
||||
m_client = new BazaarClient(m_bazaarSettings);
|
||||
|
Reference in New Issue
Block a user