- Timestamp:
- Apr 10, 2014 7:08:16 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 93233
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleImpl.h
r51008 r51026 447 447 448 448 /** The combined result of Console::addVMCaller() and Console::safeVMPtrRetainer */ 449 HRESULT rc() const { return SUCCEEDED(mRC)? Base::rc(): mRC; }449 HRESULT rc() const { return Base::isOk()? mRC: Base::rc(); } 450 450 /** Shortcut to SUCCEEDED(rc()) */ 451 451 bool isOk() const { return SUCCEEDED(mRC) && Base::isOk(); }
Note:
See TracChangeset
for help on using the changeset viewer.