Changeset 45805 in vbox for trunk/src/VBox/Main/glue
- Timestamp:
- Apr 29, 2013 12:30:50 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/ErrorInfo.cpp
r44970 r45805 50 50 51 51 mResultCode = x.mResultCode; 52 mResultDetail = x.mResultDetail; 52 53 mInterfaceID = x.mInterfaceID; 53 54 mComponent = x.mComponent; … … 78 79 79 80 mResultCode = S_OK; 81 mResultDetail = 0; 80 82 mInterfaceID.clear(); 81 83 mComponent.setNull(); … … 225 227 bool gotSomething = false; 226 228 bool gotAll = true; 227 LONG lrc ;229 LONG lrc, lrd; 228 230 229 231 rc = info->COMGETTER(ResultCode)(&lrc); mResultCode = lrc; 232 gotSomething |= SUCCEEDED(rc); 233 gotAll &= SUCCEEDED(rc); 234 235 rc = info->COMGETTER(ResultDetail)(&lrd); mResultDetail = lrd; 230 236 gotSomething |= SUCCEEDED(rc); 231 237 gotAll &= SUCCEEDED(rc);
Note:
See TracChangeset
for help on using the changeset viewer.