Refactor the externally modified file handling

Reviewed-by: dt
This commit is contained in:
con
2010-03-19 10:28:05 +01:00
parent 5bc886c5b6
commit d6061a23e1
30 changed files with 368 additions and 226 deletions

View File

@@ -598,9 +598,17 @@ bool CMakeFile::isSaveAsAllowed() const
return false;
}
void CMakeFile::modified(ReloadBehavior *behavior)
Core::IFile::ReloadBehavior CMakeFile::reloadBehavior(ChangeTrigger state, ChangeType type) const
{
Q_UNUSED(behavior)
Q_UNUSED(state)
Q_UNUSED(type)
return BehaviorSilent;
}
void CMakeFile::reload(ReloadFlag flag, ChangeType type)
{
Q_UNUSED(flag)
Q_UNUSED(type)
}
CMakeBuildSettingsWidget::CMakeBuildSettingsWidget(CMakeProject *project)