Changeset 18829 in vbox for trunk/src/VBox/Main/ConsoleImpl.cpp
- Timestamp:
- Apr 7, 2009 3:42:32 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl.cpp
r18826 r18829 4335 4335 /* a valid host interface must have been set */ 4336 4336 Bstr hostif; 4337 adapter->COMGETTER( BridgedInterface)(hostif.asOutParam());4337 adapter->COMGETTER(HostInterface)(hostif.asOutParam()); 4338 4338 if (!hostif) 4339 4339 { … … 5735 5735 /* The name of the TAP interface we are using */ 5736 5736 Bstr tapDeviceName; 5737 rc = networkAdapter->COMGETTER( BridgedInterface)(tapDeviceName.asOutParam());5737 rc = networkAdapter->COMGETTER(HostInterface)(tapDeviceName.asOutParam()); 5738 5738 if (FAILED(rc)) 5739 5739 tapDeviceName.setNull(); /* Is this necessary? */ … … 5856 5856 Bstr tapDeviceName, tapTerminateApplication; 5857 5857 bool isStatic = true; 5858 rc = networkAdapter->COMGETTER( BridgedInterface)(tapDeviceName.asOutParam());5858 rc = networkAdapter->COMGETTER(HostInterface)(tapDeviceName.asOutParam()); 5859 5859 if (FAILED(rc) || tapDeviceName.isEmpty()) 5860 5860 {
Note:
See TracChangeset
for help on using the changeset viewer.