Removing some unused semicolons after Q_UNUSED

There were both variants, with and without extra semicolon.
This commit is contained in:
Alessandro Portale
2009-07-13 17:35:17 +02:00
parent f9ed6f18bc
commit d3f9757916
81 changed files with 298 additions and 298 deletions

View File

@@ -226,8 +226,8 @@ bool GitPlugin::initialize(const QStringList &arguments, QString *errorMessage)
typedef VCSBase::VCSEditorFactory<GitEditor> GitEditorFactory;
typedef VCSBase::VCSSubmitEditorFactory<GitSubmitEditor> GitSubmitEditorFactory;
Q_UNUSED(arguments);
Q_UNUSED(errorMessage);
Q_UNUSED(arguments)
Q_UNUSED(errorMessage)
m_core = Core::ICore::instance();
m_gitClient = new GitClient(this);