summaryrefslogtreecommitdiffstats
path: root/examples/threads
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-23 23:30:03 +0200
commit6d65b2cc8c5d86d2351e27c158e3b18519e1fcb5 (patch)
tree81a34f7f477a0ab4cb0f8b4f26d5411163e31f49 /examples/threads
parente44f1dabe44f4979da5da7d5d50395883f3de684 (diff)
Use QStringList::join(QChar) overload where applicable [examples]
This is an automated change performing the following replacements: join\("(.)"\) -> join('\1') join\(QLatin1String\("(.)"\)\) -> join(QLatin1Char('\1')) join\(QStringLiteral\("(.)"\)\) -> join(QLatin1Char('\1')) Change-Id: I1d0c9782cc1522d937b930531720e32d4c8f7ce8 Reviewed-by: Marc Mutz <marc.mutz@kdab.com>
Diffstat (limited to 'examples/threads')
-rw-r--r--examples/threads/queuedcustomtype/window.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/threads/queuedcustomtype/window.cpp b/examples/threads/queuedcustomtype/window.cpp
index 8e7bc64640..9dc07eca53 100644
--- a/examples/threads/queuedcustomtype/window.cpp
+++ b/examples/threads/queuedcustomtype/window.cpp
@@ -84,7 +84,7 @@ void Window::loadImage()
formats.append("*." + format);
QString newPath = QFileDialog::getOpenFileName(this, tr("Open Image"),
- path, tr("Image files (%1)").arg(formats.join(" ")));
+ path, tr("Image files (%1)").arg(formats.join(' ')));
if (newPath.isEmpty())
return;