Changeset 27607 in vbox for trunk/src/VBox/Main/NetworkAdapterImpl.cpp
- Timestamp:
- Mar 22, 2010 6:13:07 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/NetworkAdapterImpl.cpp
r26818 r27607 37 37 //////////////////////////////////////////////////////////////////////////////// 38 38 39 DEFINE_EMPTY_CTOR_DTOR (NetworkAdapter) 39 NetworkAdapter::NetworkAdapter() 40 : mParent(NULL) 41 { 42 } 43 44 NetworkAdapter::~NetworkAdapter() 45 { 46 } 40 47 41 48 HRESULT NetworkAdapter::FinalConstruct() … … 174 181 mData.free(); 175 182 176 unconst(mPeer) .setNull();177 unconst(mParent) .setNull();183 unconst(mPeer) = NULL; 184 unconst(mParent) = NULL; 178 185 } 179 186
Note:
See TracChangeset
for help on using the changeset viewer.