Change IBuildStepFactory::canCreate to take a BuildConfiguration

instead of a Project. Since BuildSteps "should" only care about the
BuildConfiguration not the Project. (Not 100% doable, but still.)
This commit is contained in:
dt
2009-11-25 19:39:52 +01:00
parent a312206306
commit a7a7e4d002
13 changed files with 17 additions and 19 deletions

View File

@@ -284,7 +284,7 @@ BuildStep *MakeStepFactory::clone(BuildStep *bs, BuildConfiguration *bc) const
return new MakeStep(static_cast<MakeStep *>(bs), bc);
}
QStringList MakeStepFactory::canCreateForProject(Project * /* pro */) const
QStringList MakeStepFactory::canCreateForProject(BuildConfiguration * /* pro */) const
{
return QStringList();
}