GenericProject: Add ; after Q_UNUSED

Change-Id: Ia8710ed8830d15920a47fb132b916a2f0378607c
Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
This commit is contained in:
Tobias Hunger
2015-11-26 12:37:17 +01:00
committed by Tobias Hunger
parent b2a04cdfef
commit b0e7a0c869

View File

@@ -406,7 +406,7 @@ GenericProjectNode *GenericProject::rootProjectNode() const
QStringList GenericProject::files(FilesMode fileMode) const
{
Q_UNUSED(fileMode)
Q_UNUSED(fileMode);
return m_files;
}
@@ -489,15 +489,15 @@ bool GenericProjectFile::isSaveAsAllowed() const
IDocument::ReloadBehavior GenericProjectFile::reloadBehavior(ChangeTrigger state, ChangeType type) const
{
Q_UNUSED(state)
Q_UNUSED(type)
Q_UNUSED(state);
Q_UNUSED(type);
return BehaviorSilent;
}
bool GenericProjectFile::reload(QString *errorString, ReloadFlag flag, ChangeType type)
{
Q_UNUSED(errorString)
Q_UNUSED(flag)
Q_UNUSED(errorString);
Q_UNUSED(flag);
if (type == TypePermissions)
return true;
m_project->refresh(m_options);