diff options
author | Andy Shaw <andy.shaw@digia.com> | 2012-09-27 04:08:34 (GMT) |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2012-11-18 20:08:55 (GMT) |
commit | f319483be7f0c8c91b3ebc4e9089f4747a2d7002 (patch) | |
tree | 680d1299c06fcaf7e1c76eb2b21ca0f657fa4cc9 /src/corelib | |
parent | 9bc44bb10b8f7426c8431d8e2fcb46ba9a0334aa (diff) | |
download | Qt-f319483be7f0c8c91b3ebc4e9089f4747a2d7002.zip Qt-f319483be7f0c8c91b3ebc4e9089f4747a2d7002.tar.gz Qt-f319483be7f0c8c91b3ebc4e9089f4747a2d7002.tar.bz2 |
Fix regression introduced in QFileSystemEntry::path()
When fd2eb070128ab6ef6b5c9343a0921f6b5a0bc041 was backported it
shouldn't have included the change to path() as this introduced
a behaviour change. This reverts that part of the patch so it
is back to Qt 4.8.2 behavior.
Task-number: QTBUG-27356
Change-Id: I7c19dda473e7aa2c53baed961c3b0e0d322362fe
Reviewed-by: João Abecasis <joao@abecasis.name>
Diffstat (limited to 'src/corelib')
-rw-r--r-- | src/corelib/io/qfilesystementry.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/io/qfilesystementry.cpp b/src/corelib/io/qfilesystementry.cpp index 32bf109..75d85a5 100644 --- a/src/corelib/io/qfilesystementry.cpp +++ b/src/corelib/io/qfilesystementry.cpp @@ -189,7 +189,7 @@ QString QFileSystemEntry::path() const if (m_lastSeparator == -1) { #if defined(Q_OS_WIN) || defined(Q_OS_SYMBIAN) if (m_filePath.length() >= 2 && m_filePath.at(1) == QLatin1Char(':')) - return QFSFileEngine::currentPath(m_filePath.left(2)); + return m_filePath.left(2); #endif return QString(QLatin1Char('.')); } |