Changeset 26553 in vbox for trunk/src/VBox/Main/generic
- Timestamp:
- Feb 15, 2010 5:34:29 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 57732
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/generic/NetIf-generic.cpp
r26550 r26553 231 231 Bstr ifname; 232 232 ComPtr<IHostNetworkInterface> iface; 233 if (FAILED(host->FindHostNetworkInterfaceById (Guid(aId).toUtf16(), iface.asOutParam())))233 if (FAILED(host->FindHostNetworkInterfaceById (Guid(aId).toUtf16(), iface.asOutParam()))) 234 234 return VERR_INVALID_PARAMETER; 235 iface->COMGETTER(Name) (ifname.asOutParam());236 if (ifname.is Empty())235 iface->COMGETTER(Name) (ifname.asOutParam()); 236 if (ifname.isNull()) 237 237 return VERR_INTERNAL_ERROR; 238 238 239 rc = progress->init(pVBox, 240 host, 241 Bstr("Removing host network interface"), 239 rc = progress->init (pVBox, host, 240 Bstr ("Removing host network interface"), 242 241 FALSE /* aCancelable */); 243 242 if(SUCCEEDED(rc))
Note:
See TracChangeset
for help on using the changeset viewer.