forked from qt-creator/qt-creator
Add a way to configure what cleaning does.
Task-Nr: 235965
This commit is contained in:
@@ -94,6 +94,12 @@ void Project::removeCleanStep(int position)
|
||||
m_cleanSteps.removeAt(position);
|
||||
}
|
||||
|
||||
void Project::moveCleanStepUp(int position)
|
||||
{
|
||||
BuildStep *bs = m_cleanSteps.takeAt(position);
|
||||
m_cleanSteps.insert(position - 1, bs);
|
||||
}
|
||||
|
||||
void Project::addBuildConfiguration(const QString &name)
|
||||
{
|
||||
if (buildConfigurations().contains(name) )
|
||||
@@ -166,8 +172,6 @@ QList<BuildStep *> Project::cleanSteps() const
|
||||
return m_cleanSteps;
|
||||
}
|
||||
|
||||
|
||||
|
||||
void Project::saveSettings()
|
||||
{
|
||||
PersistentSettingsWriter writer;
|
||||
|
||||
Reference in New Issue
Block a user