forked from qt-creator/qt-creator
Replace occurrences of QStringList() << pattern
Change-Id: I598d8c06193c2e72435a76165d1afc9ee3465b48 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -476,8 +476,7 @@ void QbsProjectManagerPlugin::buildFiles(QbsProject *project, const QStringList
|
||||
|
||||
void QbsProjectManagerPlugin::buildSingleFile(QbsProject *project, const QString &file)
|
||||
{
|
||||
buildFiles(project, QStringList(file), QStringList()
|
||||
<< QLatin1String("obj") << QLatin1String("hpp"));
|
||||
buildFiles(project, QStringList(file), QStringList({ "obj", "hpp" }));
|
||||
}
|
||||
|
||||
void QbsProjectManagerPlugin::buildProducts(QbsProject *project, const QStringList &products)
|
||||
|
||||
Reference in New Issue
Block a user