summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/interfaces/interfacesetupimp.cpp
Side-by-side diff
Diffstat (limited to 'noncore/settings/networksettings/interfaces/interfacesetupimp.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/networksettings/interfaces/interfacesetupimp.cpp11
1 files changed, 1 insertions, 10 deletions
diff --git a/noncore/settings/networksettings/interfaces/interfacesetupimp.cpp b/noncore/settings/networksettings/interfaces/interfacesetupimp.cpp
index 4818e37..56bbe93 100644
--- a/noncore/settings/networksettings/interfaces/interfacesetupimp.cpp
+++ b/noncore/settings/networksettings/interfaces/interfacesetupimp.cpp
@@ -47,17 +47,14 @@ bool InterfaceSetupImp::saveSettings(){
QMessageBox::information(this, "Not Saved.", "Please fill in the IP address and\n subnet entries.", QMessageBox::Ok);
return false;
}
interfaces.removeAllInterfaceOptions();
// DHCP
- if(dhcpCheckBox->isChecked()){
+ if(dhcpCheckBox->isChecked())
interfaces.setInterfaceMethod(INTERFACES_METHOD_DHCP);
- interfaces.setInterfaceOption("leasehours", QString("%1").arg(leaseTime->value()));
- interfaces.setInterfaceOption("leasetime", QString("%1").arg(leaseTime->value()*60*60));
- }
else{
interfaces.setInterfaceMethod("static");
interfaces.setInterfaceOption("address", ipAddressEdit->text());
interfaces.setInterfaceOption("netmask", subnetMaskEdit->text());
interfaces.setInterfaceOption("gateway", gatewayEdit->text());
if(!firstDNSLineEdit->text().isEmpty() || !secondDNSLineEdit->text().isEmpty()){
@@ -119,27 +116,21 @@ void InterfaceSetupImp::setProfile(const QString &profile){
// DHCP
bool error = false;
if(interfaces.getInterfaceMethod(error) == INTERFACES_METHOD_DHCP)
dhcpCheckBox->setChecked(true);
else
dhcpCheckBox->setChecked(false);
- leaseTime->setValue(interfaces.getInterfaceOption("leasehours", error).toInt());
- if(error)
- leaseTime->setValue(interfaces.getInterfaceOption("leasetime", error).toInt()/60/60);
- if(error)
- leaseTime->setValue(24);
// IP Information
autoStart->setChecked(interfaces.isAuto(interface->getInterfaceName()));
QString dns = interfaces.getInterfaceOption("up "DNSSCRIPT" -a", error);
if(dns.contains(" ")){
firstDNSLineEdit->setText(dns.mid(0, dns.find(" ")));
secondDNSLineEdit->setText(dns.mid(dns.find(" ")+1, dns.length()));
}
ipAddressEdit->setText(interfaces.getInterfaceOption("address", error));
subnetMaskEdit->setText(interfaces.getInterfaceOption("netmask", error));
gatewayEdit->setText(interfaces.getInterfaceOption("gateway", error));
-
}
// interfacesetup.cpp