Changeset 85743 in vbox for trunk/src/VBox/Main/src-client/GuestDnDTargetImpl.cpp
- Timestamp:
- Aug 13, 2020 7:36:01 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestDnDTargetImpl.cpp
r85742 r85743 144 144 ///////////////////////////////////////////////////////////////////////////// 145 145 146 intGuestDnDTarget::init(const ComObjPtr<Guest>& pGuest)146 HRESULT GuestDnDTarget::init(const ComObjPtr<Guest>& pGuest) 147 147 { 148 148 LogFlowThisFuncEnter(); … … 162 162 */ 163 163 m_pResp = GuestDnDInst()->response(); 164 AssertPtrReturn(m_pResp, VERR_INVALID_POINTER);164 AssertPtrReturn(m_pResp, E_POINTER); 165 165 166 166 /* Confirm a successful initialization when it's the case. */ 167 167 autoInitSpan.setSucceeded(); 168 168 169 return VINF_SUCCESS;169 return S_OK; 170 170 } 171 171
Note:
See TracChangeset
for help on using the changeset viewer.