Changeset 63105 in vbox for trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnD.cpp
- Timestamp:
- Aug 6, 2016 4:20:00 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnD.cpp
r63103 r63105 1250 1250 int rc2 = VbglR3DnDGHSendAckPending(&mDnDCtx, 1251 1251 uDefAction, uAllActions, 1252 strFormats.c_str(), strFormats.length() + 1 /* Include termination */);1252 strFormats.c_str(), (uint32_t)strFormats.length() + 1 /* Include termination */); 1253 1253 if (RT_FAILURE(rc2)) 1254 1254 { … … 1327 1327 /** @todo Respect uDefAction. */ 1328 1328 void *pvData = pDropTarget->DataMutableRaw(); 1329 uint32_t cbData = pDropTarget->DataSize(); 1329 uint32_t cbData = (uint32_t)pDropTarget->DataSize(); 1330 Assert(cbData == pDropTarget->DataSize()); 1330 1331 1331 1332 if ( pvData
Note:
See TracChangeset
for help on using the changeset viewer.