From 6d65b2cc8c5d86d2351e27c158e3b18519e1fcb5 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 [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 --- examples/threads/queuedcustomtype/window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/threads/queuedcustomtype/window.cpp') 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; -- cgit v1.2.3