Changeset 26046 in vbox for trunk/src/VBox/Main/AudioAdapterImpl.cpp
- Timestamp:
- Jan 26, 2010 2:06:05 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56959
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/AudioAdapterImpl.cpp
r25860 r26046 22 22 #include "AudioAdapterImpl.h" 23 23 #include "MachineImpl.h" 24 25 #include <iprt/cpp/utils.h> 26 27 #include <VBox/settings.h> 28 29 #include "AutoStateDep.h" 24 30 #include "AutoCaller.h" 25 31 #include "Logging.h" 26 27 #include <iprt/cpp/utils.h>28 29 #include <VBox/settings.h>30 32 31 33 // constructor / destructor … … 194 196 195 197 /* the machine needs to be mutable */ 196 Machine::AutoMutableStateDependency adep(mParent);198 AutoMutableStateDependency adep(mParent); 197 199 if (FAILED(adep.rc())) return adep.rc(); 198 200 … … 228 230 229 231 /* the machine needs to be mutable */ 230 Machine::AutoMutableStateDependency adep(mParent);232 AutoMutableStateDependency adep(mParent); 231 233 if (FAILED(adep.rc())) return adep.rc(); 232 234 … … 312 314 313 315 /* the machine needs to be mutable */ 314 Machine::AutoMutableStateDependency adep(mParent);316 AutoMutableStateDependency adep(mParent); 315 317 if (FAILED(adep.rc())) return adep.rc(); 316 318
Note:
See TracChangeset
for help on using the changeset viewer.