summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoão Abecasis <joao.abecasis@nokia.com>2011-08-26 09:01:48 (GMT)
committerJoão Abecasis <joao.abecasis@nokia.com>2011-08-26 12:10:39 (GMT)
commitd4aa1777389f41da60a862a8c371d13839938d43 (patch)
tree0c5d61140417abeecd06f08f703d3fd2452d5272
parent13899108ed57548d3c4f40e595481f8ee76e4fcf (diff)
downloadQt-d4aa1777389f41da60a862a8c371d13839938d43.zip
Qt-d4aa1777389f41da60a862a8c371d13839938d43.tar.gz
Qt-d4aa1777389f41da60a862a8c371d13839938d43.tar.bz2
ret is an "internal" path, no need to re-process it
Where "internal" means that it uses Qt's separator '/', regardless of the native one.
-rw-r--r--src/corelib/io/qfilesystemengine_win.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/io/qfilesystemengine_win.cpp b/src/corelib/io/qfilesystemengine_win.cpp
index 993c946..764ee6d 100644
--- a/src/corelib/io/qfilesystemengine_win.cpp
+++ b/src/corelib/io/qfilesystemengine_win.cpp
@@ -536,7 +536,7 @@ QFileSystemEntry QFileSystemEngine::absoluteName(const QFileSystemEntry &entry)
// Force uppercase drive letters.
ret[0] = ret.at(0).toUpper();
}
- return QFileSystemEntry(ret);
+ return QFileSystemEntry(ret, QFileSystemEntry::FromInternalPath());
}
//static