ProjectExplorer: Fix comments for build/clean steps

Change-Id: I8c3f72f4a1e44c0e50bc1733a7e619502d21777c
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Robert Loehning
2018-02-08 20:26:14 +01:00
parent 6f04ca6463
commit fb4f3643fa

View File

@@ -47,10 +47,10 @@ BuildStepList::BuildStepList(QObject *parent, Core::Id id)
: ProjectConfiguration(parent, id)
{
if (id == Constants::BUILDSTEPS_BUILD) {
//: Display name of the clean build step list. Used as part of the labels in the project window.
//: Display name of the build build step list. Used as part of the labels in the project window.
setDefaultDisplayName(tr("Build"));
} else if (id == Constants::BUILDSTEPS_CLEAN) {
//: Display name of the build build step list. Used as part of the labels in the project window.
//: Display name of the clean build step list. Used as part of the labels in the project window.
setDefaultDisplayName(tr("Clean"));
}
}