- Timestamp:
- Nov 5, 2018 7:15:24 PM (6 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/CaptureSettingsImpl.h
r75257 r75259 25 25 namespace settings 26 26 { 27 structCaptureSettings;27 class CaptureSettings; 28 28 } 29 29 -
trunk/src/VBox/Main/src-server/CaptureScreenSettingsImpl.cpp
r75251 r75259 223 223 224 224 alock.acquire(); 225 m->bd->fEnabled = enabled;225 m->bd->fEnabled = RT_BOOL(enabled); 226 226 alock.release(); 227 227 … … 508 508 { 509 509 AutoAnyStateDependency adep(m->pMachine); 510 AssertComRCReturn(adep.rc(), E_UNEXPECTED);510 AssertComRCReturn(adep.rc(), false); 511 511 512 512 if ( Global::IsOnline(adep.machineState())
Note:
See TracChangeset
for help on using the changeset viewer.