Changeset 20267 in vbox for trunk/src/VBox/Main/glue/ErrorInfo.cpp
- Timestamp:
- Jun 4, 2009 11:27:27 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 48138
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/ErrorInfo.cpp
r16555 r20267 180 180 bool gotSomething = false; 181 181 bool gotAll = true; 182 183 rc = info->COMGETTER(ResultCode) (&mResultCode); 182 LONG lrc; 183 184 rc = info->COMGETTER(ResultCode) (&lrc); mResultCode = lrc; 184 185 gotSomething |= SUCCEEDED (rc); 185 186 gotAll &= SUCCEEDED (rc);
Note:
See TracChangeset
for help on using the changeset viewer.