diff options
Diffstat (limited to 'src/VBox/Main/src-client/USBDeviceImpl.cpp')
-rw-r--r-- | src/VBox/Main/src-client/USBDeviceImpl.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/VBox/Main/src-client/USBDeviceImpl.cpp b/src/VBox/Main/src-client/USBDeviceImpl.cpp index a927d64f..023b6979 100644 --- a/src/VBox/Main/src-client/USBDeviceImpl.cpp +++ b/src/VBox/Main/src-client/USBDeviceImpl.cpp @@ -4,7 +4,7 @@ */ /* - * Copyright (C) 2006-2008 Oracle Corporation + * Copyright (C) 2006-2011 Oracle Corporation * * This file is part of VirtualBox Open Source Edition (OSE), as * available from http://www.virtualbox.org. This file is free software; @@ -82,10 +82,10 @@ HRESULT OUSBDevice::init(IUSBDevice *aUSBDevice) hrc = aUSBDevice->COMGETTER(Port)(&unconst(mData.port)); ComAssertComRCRet(hrc, hrc); - hrc = aUSBDevice->COMGETTER(Port)(&unconst(mData.version)); + hrc = aUSBDevice->COMGETTER(Version)(&unconst(mData.version)); ComAssertComRCRet(hrc, hrc); - hrc = aUSBDevice->COMGETTER(Port)(&unconst(mData.portVersion)); + hrc = aUSBDevice->COMGETTER(PortVersion)(&unconst(mData.portVersion)); ComAssertComRCRet(hrc, hrc); hrc = aUSBDevice->COMGETTER(Remote)(&unconst(mData.remote)); |