Changeset 85462 in vbox for trunk/src/VBox
- Timestamp:
- Jul 27, 2020 7:18:57 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139514
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/DragAndDrop/DnDTransferList.cpp
r85435 r85462 122 122 123 123 /** 124 * Resets a transfer list. 125 * 126 * Note: Does *not* clear the root path! 127 * 128 * @param pList Transfer list to clear. 124 * Resets a transfer list to its initial state. 125 * 126 * @param pList Transfer list to reset. 129 127 */ 130 128 void DnDTransferListReset(PDNDTRANSFERLIST pList) 131 129 { 132 130 AssertPtrReturnVoid(pList); 133 134 /* Note: This does not clear the root path! */135 131 136 132 if (!pList->pszPathRootAbs) 137 133 return; 134 135 RTStrFree(pList->pszPathRootAbs); 136 pList->pszPathRootAbs = NULL; 138 137 139 138 PDNDTRANSFERLISTROOT pRootCur, pRootNext;
Note:
See TracChangeset
for help on using the changeset viewer.