From f4d47945ba17db276e94046473816014ed0342e9 Mon Sep 17 00:00:00 2001 From: Marc Mutz Date: Fri, 18 May 2012 20:00:23 +0200 Subject: Use QStringList::join(QChar) overload where applicable [qmake] This is an automated change performing the following replacements: join\("(.)"\) -> join('\1') join\(QLatin1String\("(.)"\)\) -> join(QLatin1Char('\1')) join\(QStringLiteral\("(.)"\)\) -> join(QLatin1Char('\1')) Change-Id: I9c9964703dedfdab6e7bfac80be22bd5570e2e49 Reviewed-by: Oswald Buddenhagen --- qmake/project.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qmake/project.cpp') diff --git a/qmake/project.cpp b/qmake/project.cpp index 1b352796a5..5c99cb1c7a 100644 --- a/qmake/project.cpp +++ b/qmake/project.cpp @@ -86,7 +86,7 @@ static ProStringList prepareBuiltinArgs(const QList &args) ProStringList ret; ret.reserve(args.size()); foreach (const ProStringList &arg, args) - ret << arg.join(" "); + ret << arg.join(' '); return ret; } -- cgit v1.2.3