summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qtemporaryfile.cpp
diff options
context:
space:
mode:
authorJoão Abecasis <joao.abecasis@nokia.com>2011-08-05 10:32:51 +0200
committerQt by Nokia <qt-info@nokia.com>2011-10-20 07:22:57 +0200
commit1ef167f0502d219ab1f301e25a663e67287666ee (patch)
tree60e57224afb38442a8a1a0a2d74dbbaf6e5a9647 /src/corelib/io/qtemporaryfile.cpp
parentd2b16043efe8e92362b8ad8f187490b4ae50319a (diff)
Use fromLocal8Bit for reversing toLocal8Bit
path is converted to 8-bit encoding using toLocal8Bit in QTemporaryFileEngine::open. The reverse operation should be used here. (cherry picked from commit 023976f9dd48a3deb947905d32d5fc0692da7318) Change-Id: Idb4c1ca3415300367c46a09d68df640e17b7bfdc Reviewed-by: João Abecasis <joao.abecasis@nokia.com>
Diffstat (limited to 'src/corelib/io/qtemporaryfile.cpp')
-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 adf353eb30..c9cdcbb99e 100644
--- a/src/corelib/io/qtemporaryfile.cpp
+++ b/src/corelib/io/qtemporaryfile.cpp
@@ -141,7 +141,7 @@ static int createFileFromTemplate(char *const path,
return -1;
}
#else
- if (!QFileInfo(QLatin1String(path)).exists())
+ if (!QFileInfo(QString::fromLocal8Bit(path)).exists())
return 1;
#endif