VirtualBox

Ignore:
Timestamp:
Mar 16, 2009 10:45:54 PM (16 years ago)
Author:
vboxsync
Message:

FE/Qt4: 2869: Rework network adapter UI - Update for 44573 commit. That was missed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/VBoxVMSettingsNetworkDetails.cpp

    r17987 r17988  
    228228            mRbManual->setChecked (true);
    229229            QString ipv4 (property ("HOI_IPv4Addr").toString());
    230             if (!ipv4.isEmpty() && ipv4 != mLeIPv4->text())
     230            if (ipv4 != mLeIPv4->text())
    231231                mLeIPv4->setText (ipv4);
    232232            QString nmv4 (property ("HOI_IPv4Mask").toString());
    233             if (!nmv4.isEmpty() && nmv4 != mLeHMv4->text())
     233            if (nmv4 != mLeHMv4->text())
    234234                mLeHMv4->setText (nmv4);
    235235            if (property ("HOI_IPv6Supported").toBool())
    236236            {
    237237                QString ipv6 (property ("HOI_IPv6Addr").toString());
    238                 if (!ipv6.isEmpty() && ipv6 != mLeIPv6->text())
     238                if (ipv6 != mLeIPv6->text())
    239239                    mLeIPv6->setText (ipv6);
    240240                QString nmv6 (property ("HOI_IPv6Mask").toString());
    241                 if (!nmv6.isEmpty() && nmv6 != mLeHMv6->text())
     241                if (nmv6 != mLeHMv6->text())
    242242                    mLeHMv6->setText (nmv6);
    243243            }
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