summaryrefslogtreecommitdiff
path: root/src/VBox/Main/src-client/USBDeviceImpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/VBox/Main/src-client/USBDeviceImpl.cpp')
-rw-r--r--src/VBox/Main/src-client/USBDeviceImpl.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/VBox/Main/src-client/USBDeviceImpl.cpp b/src/VBox/Main/src-client/USBDeviceImpl.cpp
index 8d6c4db26..2600d4069 100644
--- a/src/VBox/Main/src-client/USBDeviceImpl.cpp
+++ b/src/VBox/Main/src-client/USBDeviceImpl.cpp
@@ -1,4 +1,4 @@
-/* $Id: USBDeviceImpl.cpp $ */
+/* $Id: USBDeviceImpl.cpp 35638 2011-01-19 19:10:49Z vboxsync $ */
/** @file
* VirtualBox COM class implementation
*/
@@ -29,12 +29,13 @@ DEFINE_EMPTY_CTOR_DTOR (OUSBDevice)
HRESULT OUSBDevice::FinalConstruct()
{
- return S_OK;
+ return BaseFinalConstruct();
}
void OUSBDevice::FinalRelease()
{
uninit ();
+ BaseFinalRelease();
}
// public initializer/uninitializer for internal purposes only