Changeset 69755 in vbox for trunk/src/VBox/GuestHost/DragAndDrop/DnDURIList.cpp
- Timestamp:
- Nov 19, 2017 2:35:01 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/DragAndDrop/DnDURIList.cpp
r69753 r69755 145 145 break; 146 146 } 147 /** @todo r=bird: you really need to read the documentation! I already 148 * pointed out that this isn't goint to work in the guest control 149 * code. sigh. */ 147 150 148 151 switch (DirEntry.enmType) … … 151 154 { 152 155 /* Skip "." and ".." entries. */ 153 if ( RTStrCmp(DirEntry.szName, ".") == 0 154 || RTStrCmp(DirEntry.szName, "..") == 0) 156 if (RTDirEntryIsStdDotLink(&DirEntry)) 155 157 break; 156 158
Note:
See TracChangeset
for help on using the changeset viewer.