summaryrefslogtreecommitdiffstats
path: root/tests
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-07 18:41:22 +0200
commit781b642671e1f2195e69039547c5101a573540d8 (patch)
tree8588bc9781c91ee31316fc935e14e104e618285f /tests
parente002bdee395e02f064e3915693b96317c5dc63f9 (diff)
Use QStringList::join(QChar) overload where applicable [QtWidgets]
This is an automated change performing the following replacements: join\("(.)"\) -> join('\1') join\(QLatin1String\("(.)"\)\) -> join(QLatin1Char('\1')) join\(QStringLiteral\("(.)"\)\) -> join(QLatin1Char('\1')) Change-Id: Ia30048e0c40967dc86a4e4ad26ac02ab67519096 Reviewed-by: João Abecasis <joao.abecasis@nokia.com> Reviewed-by: Marc Mutz <marc.mutz@kdab.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/widgets/util/qcompleter/tst_qcompleter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/widgets/util/qcompleter/tst_qcompleter.cpp b/tests/auto/widgets/util/qcompleter/tst_qcompleter.cpp
index dd1e1530fa..6fcf6200b0 100644
--- a/tests/auto/widgets/util/qcompleter/tst_qcompleter.cpp
+++ b/tests/auto/widgets/util/qcompleter/tst_qcompleter.cpp
@@ -87,7 +87,7 @@ QString CsvCompleter::pathFromIndex(const QModelIndex& si) const
if (list.count() == 1)
return list[0];
- return list.join(",");
+ return list.join(',');
}
class tst_QCompleter : public QObject