Changeset 627 for trunk/src/gui/dialogs/qfilesystemmodel.cpp
- Timestamp:
- Mar 4, 2010, 1:07:55 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gui/dialogs/qfilesystemmodel.cpp
r606 r627 1778 1778 node->fileName = fileName; 1779 1779 } 1780 1780 #ifdef Q_OS_OS2 1781 // remove the invalid (non-existent) file unless it's a drive letter 1782 // (note that QFileInfoGatherer doesn't report invalid drive letters so 1783 // info.size() = -1 usually means that there is no media inserted etc., 1784 // which is not a sufficient reason to hide the drive from the view) 1785 if (info.size() == -1 && parentNode != &root) { 1786 #else 1781 1787 if (info.size() == -1) { 1788 1782 1789 removeNode(parentNode, fileName); 1783 1790 continue;
Note:
See TracChangeset
for help on using the changeset viewer.