Changeset 51008 in vbox for trunk/src/VBox/Main
- Timestamp:
- Apr 9, 2014 9:20:00 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 93202
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleImpl.h
r50945 r51008 331 331 { 332 332 public: 333 AutoVMCallerBase(Console *aThat) : mThat(aThat), mRC( S_OK)333 AutoVMCallerBase(Console *aThat) : mThat(aThat), mRC(E_FAIL) 334 334 { 335 335 Assert(aThat); … … 428 428 typedef AutoVMCallerBase<taQuiet, true> Base; 429 429 public: 430 SafeVMPtrBase(Console *aThat) : Base(aThat), mRC( S_OK), mpUVM(NULL)430 SafeVMPtrBase(Console *aThat) : Base(aThat), mRC(E_FAIL), mpUVM(NULL) 431 431 { 432 432 if (Base::isOk())
Note:
See TracChangeset
for help on using the changeset viewer.