diff options
author | João Abecasis <joao.abecasis@nokia.com> | 2010-08-30 11:57:31 (GMT) |
---|---|---|
committer | João Abecasis <joao.abecasis@nokia.com> | 2010-08-30 12:00:29 (GMT) |
commit | 3fed8517dc34b77707a42eb1f43a4e7199f105c6 (patch) | |
tree | 5d52e592eba2c106b8500854e0c13d713704bfcf | |
parent | 1d52b8a0643dca077de432d841df5f49f472352a (diff) | |
download | Qt-3fed8517dc34b77707a42eb1f43a4e7199f105c6.zip Qt-3fed8517dc34b77707a42eb1f43a4e7199f105c6.tar.gz Qt-3fed8517dc34b77707a42eb1f43a4e7199f105c6.tar.bz2 |
QFileSystemEngine::isCaseSensitive for Symbian and Windows
-rw-r--r-- | src/corelib/io/qfilesystemengine_unix.cpp | 4 | ||||
-rw-r--r-- | src/corelib/io/qfilesystemengine_win.cpp | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/corelib/io/qfilesystemengine_unix.cpp b/src/corelib/io/qfilesystemengine_unix.cpp index 2274e69..68cc154 100644 --- a/src/corelib/io/qfilesystemengine_unix.cpp +++ b/src/corelib/io/qfilesystemengine_unix.cpp @@ -46,7 +46,11 @@ QT_BEGIN_NAMESPACE bool QFileSystemEngine::isCaseSensitive() { +#if defined(Q_OS_SYMBIAN) + return false; +#else return true; +#endif } //static diff --git a/src/corelib/io/qfilesystemengine_win.cpp b/src/corelib/io/qfilesystemengine_win.cpp index 942415c..40df120 100644 --- a/src/corelib/io/qfilesystemengine_win.cpp +++ b/src/corelib/io/qfilesystemengine_win.cpp @@ -45,7 +45,7 @@ QT_BEGIN_NAMESPACE bool QFileSystemEngine::isCaseSensitive() { - return true; + return false; } //static |