VirtualBox

Ignore:
Timestamp:
Dec 16, 2008 5:27:13 PM (16 years ago)
Author:
vboxsync
Message:

#3282: Qt3 build fix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/ui/VBoxVMSettingsDlg.ui.h

    r15570 r15599  
    11201120
    11211121    CHost host = vboxGlobal().virtualBox().GetHost();
    1122     CHostNetworkInterface iFace = host.GetNetworkInterfaces().FindByName (iName);
    1123     if (host.isOk())
     1122    CHostNetworkInterfaceVector interfaces =
     1123        host.GetNetworkInterfaces();
     1124    CHostNetworkInterface iFace;
     1125    for (CHostNetworkInterfaceVector::ConstIterator it = interfaces.begin();
     1126         it != interfaces.end(); ++it)
     1127        if (it->GetName() == iName)
     1128            iFace = *it;
     1129    if (!iFace.isNull())
    11241130    {
    11251131        /* delete interface */
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette