Changeset 794 for trunk/src/corelib/io/qfsfileengine_os2.cpp
- Timestamp:
- Oct 14, 2010, 6:12:21 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/corelib/io/qfsfileengine_os2.cpp
r793 r794 42 42 ****************************************************************************/ 43 43 44 45 46 44 47 #include "qplatformdefs.h" 45 48 #include "qabstractfileengine.h" … … 661 664 is_link = false; // drive/share names are never symlinks 662 665 } else { 666 667 668 663 669 QT_STATBUF st; // don't clobber our main one 664 670 that->is_link = (QT_LSTAT(nativeFilePath.constData(), &st) == 0) ? 665 671 S_ISLNK(st.st_mode) : false; 672 666 673 } 667 674 }
Note:
See TracChangeset
for help on using the changeset viewer.