- Timestamp:
- Jul 27, 2020 6:03:56 PM (4 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/VBoxTray
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnD.cpp
r85371 r85472 558 558 { 559 559 RTCList<RTCString> lstFormats = 560 RTCString(pVbglR3Event->u.HG_Enter.pszFormats, pVbglR3Event->u.HG_Enter.cbFormats - 1).split( "\r\n");560 RTCString(pVbglR3Event->u.HG_Enter.pszFormats, pVbglR3Event->u.HG_Enter.cbFormats - 1).split(DND_FORMATS_SEPARATOR); 561 561 rc = OnHgEnter(lstFormats, pVbglR3Event->u.HG_Enter.dndLstActionsAllowed); 562 562 if (RT_FAILURE(rc)) -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnDDropTarget.cpp
r85371 r85472 470 470 /* Add separation between filenames. 471 471 * Note: Also do this for the last element of the list. */ 472 rc = RTStrAAppendExN(&pszFiles, 1 /* cPairs */, "\r\n", 2 /* Bytes */);472 rc = RTStrAAppendExN(&pszFiles, 1 /* cPairs */, DND_PATH_SEPARATOR, 2 /* Bytes */); 473 473 if (RT_SUCCESS(rc)) 474 474 cchFiles += 2; /* Include \r\n */
Note:
See TracChangeset
for help on using the changeset viewer.