Changeset 69753 in vbox for trunk/src/VBox/GuestHost/DragAndDrop/DnDDroppedFiles.cpp
- Timestamp:
- Nov 19, 2017 2:27:58 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/DragAndDrop/DnDDroppedFiles.cpp
r69500 r69753 152 152 if (RT_SUCCESS(rc)) 153 153 { 154 PRTDIR phDir;155 rc = RTDirOpen(& phDir, pszDropDir);154 RTDIR hDir; 155 rc = RTDirOpen(&hDir, pszDropDir); 156 156 if (RT_SUCCESS(rc)) 157 157 { 158 this->m_hDir = phDir;158 this->m_hDir = hDir; 159 159 this->m_strPathAbs = pszDropDir; 160 160 this->m_fOpen = fFlags;
Note:
See TracChangeset
for help on using the changeset viewer.