- 時間撮記:
- 2015-4-24 下午02:17:57 (10 年 以前)
- 檔案:
-
- 修改 1 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
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
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器