Changeset 20220 in vbox for trunk/src/VBox/Main/ProgressImpl.cpp
- Timestamp:
- Jun 3, 2009 8:40:29 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ProgressImpl.cpp
r20216 r20220 372 372 } 373 373 374 STDMETHODIMP ProgressBase::COMGETTER(ResultCode) ( ULONG *aResultCode)374 STDMETHODIMP ProgressBase::COMGETTER(ResultCode) (LONG *aResultCode) 375 375 { 376 376 CheckComArgOutPointerValid(aResultCode); … … 492 492 AssertReturn (aProgress != NULL, E_INVALIDARG); 493 493 494 ULONG resultCode;495 HRESULT rc = aProgress->COMGETTER(ResultCode) (& resultCode);494 LONG iRc; 495 HRESULT rc = aProgress->COMGETTER(ResultCode) (&iRc); 496 496 AssertComRCReturnRC (rc); 497 HRESULT resultCode = iRc; 497 498 498 499 if (resultCode == S_OK) … … 1315 1316 } 1316 1317 1317 STDMETHODIMP CombinedProgress::COMGETTER(ResultCode) ( ULONG *aResultCode)1318 STDMETHODIMP CombinedProgress::COMGETTER(ResultCode) (LONG *aResultCode) 1318 1319 { 1319 1320 CheckComArgOutPointerValid(aResultCode); … … 1592 1593 return rc; 1593 1594 1594 ULONG iRc;1595 LONG iRc; 1595 1596 rc = progress->COMGETTER(ResultCode) (&iRc); 1596 1597 if (FAILED (rc)) 1597 1598 return rc; 1598 1599 1599 mResultCode = iRc; 1600 1600 1601 if (FAILED (mResultCode)) 1601 1602 {
Note:
See TracChangeset
for help on using the changeset viewer.