Changeset 55423 in vbox for trunk/src/VBox/Main/src-client/GuestDnDTargetImpl.cpp
- Timestamp:
- Apr 24, 2015 2:17:57 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 99766
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestDnDTargetImpl.cpp
r55422 r55423 27 27 #include "AutoCaller.h" 28 28 29 #include <algorithm> /* For std::find(). */30 #include <memory> /* For unique_ptr, see #7179. */29 #include <algorithm> /* For std::find(). */ 30 #include <memory> /* For auto_ptr (deprecated) / unique_ptr, seee #7179. */ 31 31 32 32 #include <iprt/file.h> … … 485 485 LogFlowFunc(("pvUser=%p\n", pvUser)); 486 486 487 std:: unique_ptr<SendDataTask> pTask(static_cast<SendDataTask*>(pvUser));487 std::auto_ptr<SendDataTask> pTask(static_cast<SendDataTask*>(pvUser)); 488 488 AssertPtr(pTask.get()); 489 489 … … 544 544 pSendCtx->mData = aData; 545 545 546 std:: unique_ptr<SendDataTask> pTask(new SendDataTask(this, pSendCtx));546 std::auto_ptr<SendDataTask> pTask(new SendDataTask(this, pSendCtx)); 547 547 AssertReturn(pTask->isOk(), pTask->getRC()); 548 548
Note:
See TracChangeset
for help on using the changeset viewer.