fix directory separators for WinRT

internally we always use forward slashes

Change-Id: I0573d63b993bb76bc5798ee060fe9bdfb7304658
Reviewed-by: Oliver Wolff <oliver.wolff@digia.com>
This commit is contained in:
Maurice Kalinowski 2013-11-12 11:52:11 +01:00 committed by The Qt Project
parent f7f9126ed7
commit 7ea584f830

View File

@ -1308,7 +1308,7 @@ QString QFileSystemEngine::tempPath()
HSTRING path;
if (FAILED(tempFolderItem->get_Path(&path)))
return ret;
ret = QString::fromWCharArray(WindowsGetStringRawBuffer(path, nullptr));
ret = QDir::fromNativeSeparators(QString::fromWCharArray(WindowsGetStringRawBuffer(path, nullptr)));
#endif // Q_OS_WINRT
if (ret.isEmpty()) {
#if !defined(Q_OS_WINCE)