Changeset 3302 in vbox for trunk/src/VBox/Main/BIOSSettingsImpl.cpp
- Timestamp:
- Jun 26, 2007 3:50:41 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/BIOSSettingsImpl.cpp
r3007 r3302 171 171 CheckComRCReturnRC (autoCaller.rc()); 172 172 173 AutoLock alock (this); 174 175 CHECK_MACHINE_MUTABILITY (mParent); 173 /* the machine needs to be mutable */ 174 Machine::AutoMutableStateDependency adep (mParent); 175 CheckComRCReturnRC (adep.rc()); 176 177 AutoLock alock (this); 176 178 177 179 mData.backup(); … … 201 203 CheckComRCReturnRC (autoCaller.rc()); 202 204 203 AutoLock alock (this); 204 205 CHECK_MACHINE_MUTABILITY (mParent); 205 /* the machine needs to be mutable */ 206 Machine::AutoMutableStateDependency adep (mParent); 207 CheckComRCReturnRC (adep.rc()); 208 209 AutoLock alock (this); 206 210 207 211 mData.backup(); … … 231 235 CheckComRCReturnRC (autoCaller.rc()); 232 236 233 AutoLock alock (this); 234 235 CHECK_MACHINE_MUTABILITY (mParent); 237 /* the machine needs to be mutable */ 238 Machine::AutoMutableStateDependency adep (mParent); 239 CheckComRCReturnRC (adep.rc()); 240 241 AutoLock alock (this); 236 242 237 243 mData.backup(); … … 264 270 CheckComRCReturnRC (autoCaller.rc()); 265 271 266 AutoLock alock (this); 267 268 CHECK_MACHINE_MUTABILITY (mParent); 272 /* the machine needs to be mutable */ 273 Machine::AutoMutableStateDependency adep (mParent); 274 CheckComRCReturnRC (adep.rc()); 275 276 AutoLock alock (this); 269 277 270 278 mData.backup(); … … 293 301 CheckComRCReturnRC (autoCaller.rc()); 294 302 295 AutoLock alock (this); 296 297 CHECK_MACHINE_MUTABILITY (mParent); 303 /* the machine needs to be mutable */ 304 Machine::AutoMutableStateDependency adep (mParent); 305 CheckComRCReturnRC (adep.rc()); 306 307 AutoLock alock (this); 298 308 299 309 mData.backup(); … … 323 333 CheckComRCReturnRC (autoCaller.rc()); 324 334 325 AutoLock alock (this); 326 327 CHECK_MACHINE_MUTABILITY (mParent); 335 /* the machine needs to be mutable */ 336 Machine::AutoMutableStateDependency adep (mParent); 337 CheckComRCReturnRC (adep.rc()); 338 339 AutoLock alock (this); 328 340 329 341 mData.backup(); … … 353 365 CheckComRCReturnRC (autoCaller.rc()); 354 366 355 AutoLock alock (this); 356 357 CHECK_MACHINE_MUTABILITY (mParent); 367 /* the machine needs to be mutable */ 368 Machine::AutoMutableStateDependency adep (mParent); 369 CheckComRCReturnRC (adep.rc()); 370 371 AutoLock alock (this); 358 372 359 373 mData.backup(); … … 383 397 CheckComRCReturnRC (autoCaller.rc()); 384 398 385 AutoLock alock (this); 386 387 CHECK_MACHINE_MUTABILITY (mParent); 399 /* the machine needs to be mutable */ 400 Machine::AutoMutableStateDependency adep (mParent); 401 CheckComRCReturnRC (adep.rc()); 402 403 AutoLock alock (this); 388 404 389 405 mData.backup();
Note:
See TracChangeset
for help on using the changeset viewer.