Changeset 71997 in vbox for trunk/src/VBox/Main
- Timestamp:
- Apr 24, 2018 8:05:09 AM (7 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/MachineImplMoveVM.h
r71990 r71997 65 65 struct ErrorInfoItem 66 66 { 67 ErrorInfoItem( unsigned intaCode, const char* aDescription):67 ErrorInfoItem(HRESULT aCode, const char* aDescription): 68 68 m_code(aCode), 69 69 m_description(aDescription == NULL ? "There is no description" : aDescription) -
trunk/src/VBox/Main/src-server/MachineImplMoveVM.cpp
r71996 r71997 190 190 Utf8StrFmt errorDesc("Can't create a test file test.txt in the %s. Check the access rights of " 191 191 "the destination folder.", strTargetFolder.c_str()); 192 errorsList.push_back(ErrorInfoItem( vrc, errorDesc.c_str()));192 errorsList.push_back(ErrorInfoItem(HRESULT(vrc), errorDesc.c_str())); 193 193 rc = m_pMachine->setError(vrc, m_pMachine->tr(errorDesc.c_str())); 194 194
Note:
See TracChangeset
for help on using the changeset viewer.