Changeset 11091 in vbox for trunk/src/VBox/Main
- Timestamp:
- Aug 4, 2008 8:44:56 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineImpl.cpp
r11090 r11091 2710 2710 2711 2711 using namespace guestProp; 2712 rc = E_FAIL;2712 HRESULT rc = E_FAIL; 2713 2713 2714 2714 if (!mHWData->mPropertyServiceActive) … … 2947 2947 2948 2948 using namespace guestProp; 2949 rc = E_FAIL;2949 HRESULT rc = E_FAIL; 2950 2950 2951 2951 if (!mHWData->mPropertyServiceActive) … … 8935 8935 AutoWriteLock alock (this); 8936 8936 8937 /* Temporarily reset the registered flag, so that our machine state 8938 * changes (i.e. mHWData.backup()) succeed. (isMutable() used in 8939 * all setters will return FALSE for a Machine instance if mRegistered 8940 * is TRUE). This is copied from registeredInit(), and may or may not be 8941 * the right way to handle this. */ 8937 8942 mData->mRegistered = FALSE; 8938 8943 HRESULT rc = checkStateDependency (MutableStateDep); … … 8962 8967 alock.unlock(); 8963 8968 SaveSettings(); 8969 /* Restore the mRegistered flag. */ 8964 8970 mData->mRegistered = TRUE; 8965 8971 return S_OK;
Note:
See TracChangeset
for help on using the changeset viewer.