summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@trolltech.com>2009-08-21 14:33:31 (GMT)
committerJoerg Bornemann <joerg.bornemann@trolltech.com>2009-08-21 14:57:03 (GMT)
commit7385c1fc7fe03836ed42cc783e840557d267cff9 (patch)
tree521211b96d06d8d369704fd79e71be3b735e7f90
parent46b19b8aae5b7004bd9272fc4606ffad1038d6ac (diff)
downloadQt-7385c1fc7fe03836ed42cc783e840557d267cff9.zip
Qt-7385c1fc7fe03836ed42cc783e840557d267cff9.tar.gz
Qt-7385c1fc7fe03836ed42cc783e840557d267cff9.tar.bz2
QFSFileEngine compile fix for VS2005
Last change wasn't enough...
-rw-r--r--src/corelib/io/qfsfileengine_win.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/io/qfsfileengine_win.cpp b/src/corelib/io/qfsfileengine_win.cpp
index 8be0dbc..cfa0a49 100644
--- a/src/corelib/io/qfsfileengine_win.cpp
+++ b/src/corelib/io/qfsfileengine_win.cpp
@@ -1513,7 +1513,7 @@ QAbstractFileEngine::FileFlags QFSFileEnginePrivate::getPermissions() const
*/
bool QFSFileEnginePrivate::isSymlink() const
{
-#if !defined(Q_OS_WINCE)
+#if !defined(Q_OS_WINCE) && defined(IO_REPARSE_TAG_SYMLINK)
if (need_lstat) {
need_lstat = false;
is_link = false;