Changeset 57776 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Sep 16, 2015 9:40:54 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102712
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibDragAndDrop.cpp
r57743 r57776 373 373 * Create and query the (unique) drop target directory in the user's temporary directory. 374 374 */ 375 PDNDDIRDROPPEDFILES pDroppedFiles; 376 const char *pszDropDir = NULL; 377 int rc = DnDDirDroppedFilesCreateAndOpenTemp(0 /* fFlags */, &pDroppedFiles); 378 if (RT_SUCCESS(rc)) 379 pszDropDir = DnDDirDroppedFilesGetDirAbs(pDroppedFiles); 375 DnDDroppedFiles droppedFiles; 376 int rc = droppedFiles.OpenTemp(0 /* fFlags */); 377 if (RT_FAILURE(rc)) 378 { 379 RTMemFree(pvChunk); 380 return VERR_NO_MEMORY; 381 } 382 383 const char *pszDropDir = droppedFiles.GetDirAbs(); 384 AssertPtr(pszDropDir); 380 385 381 386 /* … … 421 426 rc = RTDirCreate(pszPathAbs, fCreationMode, 0); 422 427 if (RT_SUCCESS(rc)) 423 rc = DnDDirDroppedAddDir(pDroppedFiles,pszPathAbs);428 rc = droppedFiles.AddDir(pszPathAbs); 424 429 425 430 RTStrFree(pszPathAbs); … … 488 493 if (RT_SUCCESS(rc)) 489 494 { 490 rc = DnDDirDroppedAddFile(pDroppedFiles,strPathAbs.c_str());495 rc = droppedFiles.AddFile(strPathAbs.c_str()); 491 496 if (RT_SUCCESS(rc)) 492 497 { … … 571 576 if (RT_FAILURE(rc)) 572 577 { 573 int rc2 = DnDDirDroppedFilesRollback(pDroppedFiles);578 int rc2 = droppedFiles.Rollback(); 574 579 AssertRC(rc2); /* Not fatal, don't report back to host. */ 575 580 } … … 620 625 * by the client's drag'n drop operation lateron. 621 626 */ 622 int rc2 = DnDDirDroppedFilesClose(pDroppedFiles, false);627 int rc2 = droppedFiles.Reset(false /* fRemoveDropDir */); 623 628 if (RT_FAILURE(rc2)) /* Not fatal, don't report back to host. */ 624 629 LogFlowFunc(("Closing dropped files directory failed with %Rrc\n", rc2)); 625 626 DnDDirDroppedFilesDestroy(pDroppedFiles);627 630 628 631 LogFlowFuncLeaveRC(rc);
Note:
See TracChangeset
for help on using the changeset viewer.