summaryrefslogtreecommitdiffstats
path: root/src/corelib
diff options
context:
space:
mode:
authorJoão Abecasis <joao.abecasis@nokia.com>2011-08-05 08:32:25 (GMT)
committerJoão Abecasis <joao.abecasis@nokia.com>2011-08-11 16:58:09 (GMT)
commit19880c1bdf75455b645fb8d5ee12bcb6e37e5aff (patch)
tree519e08c2ac41e83118aef5b15732213267712d92 /src/corelib
parent3596db6c9bb8db42476d0c7b52fa2043dc67135b (diff)
downloadQt-19880c1bdf75455b645fb8d5ee12bcb6e37e5aff.zip
Qt-19880c1bdf75455b645fb8d5ee12bcb6e37e5aff.tar.gz
Qt-19880c1bdf75455b645fb8d5ee12bcb6e37e5aff.tar.bz2
Don't convert template's path separators again
Diffstat (limited to 'src/corelib')
-rw-r--r--src/corelib/io/qtemporaryfile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/io/qtemporaryfile.cpp b/src/corelib/io/qtemporaryfile.cpp
index 9753332..aae3eb6 100644
--- a/src/corelib/io/qtemporaryfile.cpp
+++ b/src/corelib/io/qtemporaryfile.cpp
@@ -330,7 +330,7 @@ bool QTemporaryFileEngine::open(QIODevice::OpenMode openMode)
return true;
}
- d->fileEntry = QFileSystemEntry(template_);
+ d->fileEntry = QFileSystemEntry(template_, QFileSystemEntry::FromInternalPath());
return false;
#endif
}