Changeset 17988 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Mar 16, 2009 10:45:54 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxVMSettingsNetworkDetails.cpp
r17987 r17988 228 228 mRbManual->setChecked (true); 229 229 QString ipv4 (property ("HOI_IPv4Addr").toString()); 230 if ( !ipv4.isEmpty() &&ipv4 != mLeIPv4->text())230 if (ipv4 != mLeIPv4->text()) 231 231 mLeIPv4->setText (ipv4); 232 232 QString nmv4 (property ("HOI_IPv4Mask").toString()); 233 if ( !nmv4.isEmpty() &&nmv4 != mLeHMv4->text())233 if (nmv4 != mLeHMv4->text()) 234 234 mLeHMv4->setText (nmv4); 235 235 if (property ("HOI_IPv6Supported").toBool()) 236 236 { 237 237 QString ipv6 (property ("HOI_IPv6Addr").toString()); 238 if ( !ipv6.isEmpty() &&ipv6 != mLeIPv6->text())238 if (ipv6 != mLeIPv6->text()) 239 239 mLeIPv6->setText (ipv6); 240 240 QString nmv6 (property ("HOI_IPv6Mask").toString()); 241 if ( !nmv6.isEmpty() &&nmv6 != mLeHMv6->text())241 if (nmv6 != mLeHMv6->text()) 242 242 mLeHMv6->setText (nmv6); 243 243 }
Note:
See TracChangeset
for help on using the changeset viewer.