- Timestamp:
- May 24, 2011 3:46:44 PM (14 years ago)
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
r36991 r37201 7780 7780 /* The name of the TAP interface we are using */ 7781 7781 Bstr tapDeviceName; 7782 rc = networkAdapter->COMGETTER( HostInterface)(tapDeviceName.asOutParam());7782 rc = networkAdapter->COMGETTER(BridgedInterface)(tapDeviceName.asOutParam()); 7783 7783 if (FAILED(rc)) 7784 7784 tapDeviceName.setNull(); /* Is this necessary? */ … … 7945 7945 Bstr tapDeviceName, tapTerminateApplication; 7946 7946 bool isStatic = true; 7947 rc = networkAdapter->COMGETTER( HostInterface)(tapDeviceName.asOutParam());7947 rc = networkAdapter->COMGETTER(BridgedInterface)(tapDeviceName.asOutParam()); 7948 7948 if (FAILED(rc) || tapDeviceName.isEmpty()) 7949 7949 { -
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r37200 r37201 462 462 { 463 463 HRESULT hrc = S_OK; 464 PCFGMNODE p Dev, pInst, pCfg, pLunL0;464 PCFGMNODE pInst, pCfg, pLunL0; 465 465 466 466 SafeIfaceArray<IPciDeviceAttachment> assignments; … … 3335 3335 SafeArray<BSTR> names; 3336 3336 SafeArray<BSTR> values; 3337 hrc = pMedium->GetProperties( (CBSTR)L"",3337 hrc = pMedium->GetProperties(Bstr().raw(), 3338 3338 ComSafeArrayAsOutParam(names), 3339 3339 ComSafeArrayAsOutParam(values)); H(); … … 4385 4385 SafeArray<BSTR> names; 4386 4386 SafeArray<BSTR> values; 4387 hrc = aNetworkAdapter->GetProperties( (CBSTR)L"",4387 hrc = aNetworkAdapter->GetProperties(Bstr().raw(), 4388 4388 ComSafeArrayAsOutParam(names), 4389 4389 ComSafeArrayAsOutParam(values)); H();
Note:
See TracChangeset
for help on using the changeset viewer.