Changeset 27607 in vbox for trunk/src/VBox/Main/AudioAdapterImpl.cpp
- Timestamp:
- Mar 22, 2010 6:13:07 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/AudioAdapterImpl.cpp
r26235 r27607 34 34 ///////////////////////////////////////////////////////////////////////////// 35 35 36 DEFINE_EMPTY_CTOR_DTOR (AudioAdapter) 36 AudioAdapter::AudioAdapter() 37 : mParent(NULL) 38 { 39 } 40 41 AudioAdapter::~AudioAdapter() 42 { 43 } 37 44 38 45 HRESULT AudioAdapter::FinalConstruct() … … 43 50 void AudioAdapter::FinalRelease() 44 51 { 45 uninit 52 uninit(); 46 53 } 47 54 … … 169 176 mData.free(); 170 177 171 unconst(mPeer) .setNull();172 unconst(mParent) .setNull();178 unconst(mPeer) = NULL; 179 unconst(mParent) = NULL; 173 180 } 174 181
Note:
See TracChangeset
for help on using the changeset viewer.