Changeset 19239 in vbox for trunk/src/VBox/Main/RemoteUSBDeviceImpl.cpp
- Timestamp:
- Apr 28, 2009 1:19:14 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/RemoteUSBDeviceImpl.cpp
r15051 r19239 132 132 ///////////////////////////////////////////////////////////////////////////// 133 133 134 STDMETHODIMP RemoteUSBDevice::COMGETTER(Id) ( OUT_GUIDaId)134 STDMETHODIMP RemoteUSBDevice::COMGETTER(Id) (BSTR *aId) 135 135 { 136 136 CheckComArgOutPointerValid(aId); … … 140 140 141 141 /* this is const, no need to lock */ 142 mData.id.cloneTo (aId);142 Bstr(mData.id).cloneTo (aId); 143 143 144 144 return S_OK;
Note:
See TracChangeset
for help on using the changeset viewer.