- 時間撮記:
- 2015-12-14 下午02:04:37 (9 年 以前)
- 檔案:
-
- 修改 1 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Main/src-client/USBDeviceImpl.cpp
r53297 r59117 87 87 unconst(mData.address) = Utf8Str(tmp); 88 88 89 hrc = aUSBDevice->COMGETTER(Backend)(bptr); 90 ComAssertComRCRet(hrc, hrc); 91 unconst(mData.backend) = Utf8Str(tmp); 92 89 93 hrc = aUSBDevice->COMGETTER(Port)(&unconst(mData.port)); 90 94 ComAssertComRCRet(hrc, hrc); … … 137 141 138 142 unconst(mData.address).setNull(); 143 unconst(mData.backend).setNull(); 139 144 140 145 unconst(mData.port) = 0; … … 306 311 } 307 312 313 /** 314 * Returns the device specific backend. 315 * 316 * @returns COM status code 317 * @param aBackend Where to put the return string. 318 */ 319 HRESULT OUSBDevice::getBackend(com::Utf8Str &aBackend) 320 { 321 /* this is const, no need to lock */ 322 aBackend = mData.backend; 323 324 return S_OK; 325 } 326 308 327 // private methods 309 328 /////////////////////////////////////////////////////////////////////////////
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器