From a20e698216a8e730f9d16934c5d1df63cd1abf5c Mon Sep 17 00:00:00 2001 From: Friedemann Kleint <Friedemann.Kleint@digia.com> Date: Fri, 14 Mar 2014 21:44:07 +0100 Subject: [PATCH] QNX: Fix compilation with Qt 4. Change-Id: I2a3aadeaebca04ebacc7f199fb953098113c92b8 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com> --- src/plugins/qnx/blackberryapplicationrunner.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/qnx/blackberryapplicationrunner.cpp b/src/plugins/qnx/blackberryapplicationrunner.cpp index f22e7a8365b..850a12f20fe 100644 --- a/src/plugins/qnx/blackberryapplicationrunner.cpp +++ b/src/plugins/qnx/blackberryapplicationrunner.cpp @@ -323,7 +323,7 @@ void BlackBerryApplicationRunner::checkQmlJsDebugArguments() QStringList args; args << QLatin1String("-listManifest") << QDir::toNativeSeparators(m_barPackage); if (debugCheckQmlJSArgs) - qDebug() << "get manifest:" << nativePackagerCmd << args.join(QLatin1Char(' ')); + qDebug() << "get manifest:" << nativePackagerCmd << args.join(QLatin1String(" ")); m_checkQmlJsDebugArgumentsProcess->start(nativePackagerCmd, args); } @@ -383,7 +383,7 @@ void BlackBerryApplicationRunner::checkQmlJsDebugArgumentsManifestLoaded() args << manifestFile->fileName(); args << QLatin1String("app/META-INF/MANIFEST.MF"); if (debugCheckQmlJSArgs) - qDebug() << "set manifest:" << m_deployCmd << args.join(QLatin1Char(' ')); + qDebug() << "set manifest:" << m_deployCmd << args.join(QLatin1String(" ")); m_checkQmlJsDebugArgumentsProcess->start(m_deployCmd, args); } @@ -427,7 +427,7 @@ void BlackBerryApplicationRunner::launchApplication() m_launchProcess->setEnvironment(m_environment.toStringList()); } if (debugCheckQmlJSArgs) - qDebug() << "launch:" << m_deployCmd << args.join(QLatin1Char(' ')); + qDebug() << "launch:" << m_deployCmd << args.join(QLatin1String(" ")); m_launchProcess->start(m_deployCmd, args); m_runningStateTimer->start(); m_running = true; -- GitLab