summaryrefslogtreecommitdiffstats
path: root/qmake/generators/makefiledeps.cpp
diff options
context:
space:
mode:
authorMarc Mutz <marc.mutz@kdab.com>2012-05-18 20:00:23 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-09-21 02:44:22 +0200
commitf4d47945ba17db276e94046473816014ed0342e9 (patch)
tree0860293b5688c45598b8d3b6cfa449dad6221d2f /qmake/generators/makefiledeps.cpp
parentcbf447069cfeb799ff5e09902be065d77f2e7707 (diff)
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 <oswald.buddenhagen@digia.com>
Diffstat (limited to 'qmake/generators/makefiledeps.cpp')
-rw-r--r--qmake/generators/makefiledeps.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qmake/generators/makefiledeps.cpp b/qmake/generators/makefiledeps.cpp
index c4f1ed583a..e2111dac6e 100644
--- a/qmake/generators/makefiledeps.cpp
+++ b/qmake/generators/makefiledeps.cpp
@@ -828,7 +828,7 @@ void QMakeSourceFileInfo::saveCache(const QString &cf)
stream << verify.count() << endl;
for(QMap<QString, QStringList>::iterator it = verify.begin();
it != verify.end(); ++it) {
- stream << it.key() << endl << it.value().join(";") << endl;
+ stream << it.key() << endl << it.value().join(';') << endl;
}
stream << endl;
}