summaryrefslogtreecommitdiffstats
path: root/src/tools
diff options
context:
space:
mode:
authorMarc Mutz <marc.mutz@kdab.com>2012-05-18 20:00:23 +0200
committerQt by Nokia <qt-info@nokia.com>2012-09-10 00:27:13 +0200
commitecf7f0d9543c05edd2439df9a57268e4049ebee4 (patch)
treebf22398b92beb91cf6fab9dfd5fbefd420bd3751 /src/tools
parent56cb4bc01feba9c562e94db51cd3232ad2572617 (diff)
Use QStringList::join(QChar) overload where applicable [QtDBus]
This is an automated change performing the following replacements: join\("(.)"\) -> join('\1') join\(QLatin1String\("(.)"\)\) -> join(QLatin1Char('\1')) join\(QStringLiteral\("(.)"\)\) -> join(QLatin1Char('\1')) Change-Id: I807b0e88ac71a0cb367fb4170cca8f2cb0ad43f3 Reviewed-by: João Abecasis <joao.abecasis@nokia.com>
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/qdbusxml2cpp/qdbusxml2cpp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/qdbusxml2cpp/qdbusxml2cpp.cpp b/src/tools/qdbusxml2cpp/qdbusxml2cpp.cpp
index ef81aeae0c..6ddd095e8e 100644
--- a/src/tools/qdbusxml2cpp/qdbusxml2cpp.cpp
+++ b/src/tools/qdbusxml2cpp/qdbusxml2cpp.cpp
@@ -142,7 +142,7 @@ static void parseCmdLine(QStringList args)
args.takeFirst();
commandLine = QLatin1String(PROGRAMNAME " ");
- commandLine += args.join(QLatin1String(" "));
+ commandLine += args.join(QLatin1Char(' '));
int i = 0;
while (i < args.count()) {