Changeset 85232 in vbox for trunk/src/VBox/Main/src-all
- Timestamp:
- Jul 11, 2020 4:29:36 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139209
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/ExtPackManagerImpl.cpp
r82968 r85232 1918 1918 eik.getVirtualBoxErrorInfo(errorInfo); 1919 1919 } 1920 return pProgressControl->NotifyComplete( uResultCode, errorInfo);1920 return pProgressControl->NotifyComplete((LONG)uResultCode, errorInfo); 1921 1921 } 1922 1922 … … 2217 2217 m->cUpdate++; 2218 2218 } 2219 else if (SUCCEEDED( rc))2219 else if (SUCCEEDED(hrc)) 2220 2220 hrc = hrc2; 2221 2221 } … … 2598 2598 { 2599 2599 *pszSuccessInd = '\0'; 2600 offStdErrBuf = pszSuccessInd - pszStdErrBuf;2600 offStdErrBuf = (size_t)(pszSuccessInd - pszStdErrBuf); 2601 2601 } 2602 2602 else if ( ProcStatus.enmReason == RTPROCEXITREASON_NORMAL … … 3356 3356 * library path. 3357 3357 * 3358 * @returns S_OK if a path is returned, COM error status and message return if3359 * not.3358 * @returns VINF_SUCCESS if a path is returned, VBox error status and message 3359 * return if not. 3360 3360 * @param a_pstrExtPack The extension pack. 3361 3361 * @param a_pstrVrdeLibrary Where to return the path. … … 3377 3377 } 3378 3378 3379 return hrc;3379 return Global::vboxStatusCodeFromCOM(hrc); 3380 3380 } 3381 3381
Note:
See TracChangeset
for help on using the changeset viewer.