Skip to content
Snippets Groups Projects
Commit 328daa9c authored by Christian Stenger's avatar Christian Stenger Committed by hjk
Browse files

Qnx: Fix compile with Qt4


Change-Id: Ida16ba9b16cb7c2cd590d8f82e4359b44a9c68d2
Reviewed-by: default avatarhjk <hjk121@nokiamail.com>
parent 4eabcdc8
No related branches found
No related tags found
No related merge requests found
...@@ -198,9 +198,9 @@ QList<Utils::EnvironmentItem> QnxUtils::qnxEnvironmentFromNdkFile(const QString ...@@ -198,9 +198,9 @@ QList<Utils::EnvironmentItem> QnxUtils::qnxEnvironmentFromNdkFile(const QString
QString modifieddValue; QString modifieddValue;
if (Utils::HostOsInfo::isWindowsHost()) if (Utils::HostOsInfo::isWindowsHost())
modifieddValue = modifiedValues.join(QLatin1Char(';')); modifieddValue = modifiedValues.join(QLatin1String(";"));
else if (Utils::HostOsInfo::isAnyUnixHost()) else if (Utils::HostOsInfo::isAnyUnixHost())
modifieddValue = modifiedValues.join(QLatin1Char(':')); modifieddValue = modifiedValues.join(QLatin1String(":"));
items.append(Utils::EnvironmentItem(key, modifieddValue)); items.append(Utils::EnvironmentItem(key, modifieddValue));
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment