From 328daa9c5aa9a438a0187bb28e238396451f8548 Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Tue, 22 Oct 2013 16:55:41 +0200 Subject: [PATCH] Qnx: Fix compile with Qt4 Change-Id: Ida16ba9b16cb7c2cd590d8f82e4359b44a9c68d2 Reviewed-by: hjk --- src/plugins/qnx/qnxutils.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/qnx/qnxutils.cpp b/src/plugins/qnx/qnxutils.cpp index 83129c624a2..4aa9286fcfb 100644 --- a/src/plugins/qnx/qnxutils.cpp +++ b/src/plugins/qnx/qnxutils.cpp @@ -198,9 +198,9 @@ QList QnxUtils::qnxEnvironmentFromNdkFile(const QString QString modifieddValue; if (Utils::HostOsInfo::isWindowsHost()) - modifieddValue = modifiedValues.join(QLatin1Char(';')); + modifieddValue = modifiedValues.join(QLatin1String(";")); else if (Utils::HostOsInfo::isAnyUnixHost()) - modifieddValue = modifiedValues.join(QLatin1Char(':')); + modifieddValue = modifiedValues.join(QLatin1String(":")); items.append(Utils::EnvironmentItem(key, modifieddValue)); }