diff options
Diffstat (limited to 'src/VBox/Main/src-client/RemoteUSBDeviceImpl.cpp')
-rw-r--r-- | src/VBox/Main/src-client/RemoteUSBDeviceImpl.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/VBox/Main/src-client/RemoteUSBDeviceImpl.cpp b/src/VBox/Main/src-client/RemoteUSBDeviceImpl.cpp index ab416cd6e..70934fc94 100644 --- a/src/VBox/Main/src-client/RemoteUSBDeviceImpl.cpp +++ b/src/VBox/Main/src-client/RemoteUSBDeviceImpl.cpp @@ -1,4 +1,4 @@ -/* $Id: RemoteUSBDeviceImpl.cpp $ */ +/* $Id: RemoteUSBDeviceImpl.cpp 35638 2011-01-19 19:10:49Z vboxsync $ */ /** @file * @@ -37,12 +37,13 @@ DEFINE_EMPTY_CTOR_DTOR (RemoteUSBDevice) HRESULT RemoteUSBDevice::FinalConstruct() { - return S_OK; + return BaseFinalConstruct(); } void RemoteUSBDevice::FinalRelease() { uninit(); + BaseFinalRelease(); } // public initializer/uninitializer for internal purposes only |