Bazaar: mark unused parameters with Q_UNUSED

Merge-request: 272
Reviewed-by: Tobias Hunger <tobias.hunger@nokia.com>
This commit is contained in:
cerf
2011-03-14 15:37:30 +01:00
committed by Tobias Hunger
parent 8d97e3bdf2
commit 3a4c036b7f
2 changed files with 7 additions and 2 deletions

View File

@@ -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);