Changeset 54843 in vbox
- Timestamp:
- Mar 18, 2015 8:50:17 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/VRDEServerImpl.cpp
r53344 r54843 5 5 6 6 /* 7 * Copyright (C) 2006-201 4Oracle Corporation7 * Copyright (C) 2006-2015 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 258 258 { 259 259 /* the machine can also be in saved state for this property to change */ 260 AutoMutableOrSaved StateDependency adep(mParent);260 AutoMutableOrSavedOrRunningStateDependency adep(mParent); 261 261 if (FAILED(adep.rc())) return adep.rc(); 262 262 … … 373 373 374 374 /* the machine can also be in saved state for this property to change */ 375 AutoMutableOrSaved StateDependency adep(mParent);375 AutoMutableOrSavedOrRunningStateDependency adep(mParent); 376 376 if (FAILED(adep.rc())) return adep.rc(); 377 377 … … 602 602 { 603 603 /* the machine can also be in saved state for this property to change */ 604 AutoMutableOrSaved StateDependency adep(mParent);604 AutoMutableOrSavedOrRunningStateDependency adep(mParent); 605 605 if (FAILED(adep.rc())) return adep.rc(); 606 606 … … 638 638 { 639 639 /* the machine can also be in saved state for this property to change */ 640 AutoMutableOrSaved StateDependency adep(mParent);640 AutoMutableOrSavedOrRunningStateDependency adep(mParent); 641 641 if (FAILED(adep.rc())) return adep.rc(); 642 642 … … 695 695 { 696 696 /* the machine can also be in saved state for this property to change */ 697 AutoMutableOrSaved StateDependency adep(mParent);697 AutoMutableOrSavedOrRunningStateDependency adep(mParent); 698 698 if (FAILED(adep.rc())) return adep.rc(); 699 699 … … 732 732 { 733 733 /* the machine can also be in saved state for this property to change */ 734 AutoMutableOrSaved StateDependency adep(mParent);734 AutoMutableOrSavedOrRunningStateDependency adep(mParent); 735 735 if (FAILED(adep.rc())) return adep.rc(); 736 736 … … 767 767 HRESULT VRDEServer::setReuseSingleConnection(BOOL aReuseSingleConnection) 768 768 { 769 AutoMutableOrSaved StateDependency adep(mParent);769 AutoMutableOrSavedOrRunningStateDependency adep(mParent); 770 770 if (FAILED(adep.rc())) return adep.rc(); 771 771 … … 835 835 HRESULT hrc = S_OK; 836 836 /* the machine can also be in saved state for this property to change */ 837 AutoMutableOrSaved StateDependency adep(mParent);837 AutoMutableOrSavedOrRunningStateDependency adep(mParent); 838 838 hrc = adep.rc(); 839 839 if (SUCCEEDED(hrc))
Note:
See TracChangeset
for help on using the changeset viewer.