Changeset 26046 in vbox for trunk/src/VBox/Main/BIOSSettingsImpl.cpp
- Timestamp:
- Jan 26, 2010 2:06:05 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/BIOSSettingsImpl.cpp
r25860 r26046 22 22 #include "BIOSSettingsImpl.h" 23 23 #include "MachineImpl.h" 24 #include "GuestOSTypeImpl.h" 25 26 #include <iprt/cpp/utils.h> 27 #include <VBox/settings.h> 28 29 #include "AutoStateDep.h" 24 30 #include "AutoCaller.h" 25 31 #include "Logging.h" 26 #include "GuestOSTypeImpl.h"27 28 #include <iprt/cpp/utils.h>29 #include <VBox/settings.h>30 32 31 33 //////////////////////////////////////////////////////////////////////////////// … … 203 205 204 206 /* the machine needs to be mutable */ 205 Machine::AutoMutableStateDependency adep(m->pMachine);207 AutoMutableStateDependency adep(m->pMachine); 206 208 if (FAILED(adep.rc())) return adep.rc(); 207 209 … … 235 237 236 238 /* the machine needs to be mutable */ 237 Machine::AutoMutableStateDependency adep(m->pMachine);239 AutoMutableStateDependency adep(m->pMachine); 238 240 if (FAILED(adep.rc())) return adep.rc(); 239 241 … … 267 269 268 270 /* the machine needs to be mutable */ 269 Machine::AutoMutableStateDependency adep(m->pMachine);271 AutoMutableStateDependency adep(m->pMachine); 270 272 if (FAILED(adep.rc())) return adep.rc(); 271 273 … … 302 304 303 305 /* the machine needs to be mutable */ 304 Machine::AutoMutableStateDependency adep(m->pMachine);306 AutoMutableStateDependency adep(m->pMachine); 305 307 if (FAILED(adep.rc())) return adep.rc(); 306 308 … … 333 335 334 336 /* the machine needs to be mutable */ 335 Machine::AutoMutableStateDependency adep(m->pMachine);337 AutoMutableStateDependency adep(m->pMachine); 336 338 if (FAILED(adep.rc())) return adep.rc(); 337 339 … … 365 367 366 368 /* the machine needs to be mutable */ 367 Machine::AutoMutableStateDependency adep(m->pMachine);369 AutoMutableStateDependency adep(m->pMachine); 368 370 if (FAILED(adep.rc())) return adep.rc(); 369 371 … … 397 399 398 400 /* the machine needs to be mutable */ 399 Machine::AutoMutableStateDependency adep(m->pMachine);401 AutoMutableStateDependency adep(m->pMachine); 400 402 if (FAILED(adep.rc())) return adep.rc(); 401 403 … … 429 431 430 432 /* the machine needs to be mutable */ 431 Machine::AutoMutableStateDependency adep(m->pMachine);433 AutoMutableStateDependency adep(m->pMachine); 432 434 if (FAILED(adep.rc())) return adep.rc(); 433 435 … … 461 463 462 464 /* the machine needs to be mutable */ 463 Machine::AutoMutableStateDependency adep(m->pMachine);465 AutoMutableStateDependency adep(m->pMachine); 464 466 if (FAILED(adep.rc())) return adep.rc(); 465 467
Note:
See TracChangeset
for help on using the changeset viewer.