summaryrefslogtreecommitdiff
path: root/noncore/settings/netsystemtime/ntp.cpp
Side-by-side diff
Diffstat (limited to 'noncore/settings/netsystemtime/ntp.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/netsystemtime/ntp.cpp14
1 files changed, 9 insertions, 5 deletions
diff --git a/noncore/settings/netsystemtime/ntp.cpp b/noncore/settings/netsystemtime/ntp.cpp
index 551cedc..06d944d 100644
--- a/noncore/settings/netsystemtime/ntp.cpp
+++ b/noncore/settings/netsystemtime/ntp.cpp
@@ -102,2 +102,3 @@ void Ntp::saveConfig(){
bool serversChanged = true;
+ int curSrv = ComboNtpSrv->currentItem();
QString edit = ComboNtpSrv->currentText();
@@ -107,9 +108,12 @@ void Ntp::saveConfig(){
if (serversChanged){
- Config ntpSrvs("/etc/ntpservers",Config::File);
+ Config ntpSrvs(QPEApplication::qpeDir()+"etc/ntpservers",Config::File);
ntpSrvs.setGroup("servers");
- ntpSrvs.writeEntry("count", srvCount);
- for (int i = 0; i < srvCount; i++){
+ ntpSrvs.writeEntry("count", ++srvCount);
+ ntpSrvs.setGroup("0");
+ ntpSrvs.writeEntry( "name", edit );
+ curSrv = 0;
+ for (int i = 1; i < srvCount; i++){
qDebug("ntpSrvs[%i/%i]=%s",i,srvCount,ComboNtpSrv->text(i).latin1());
ntpSrvs.setGroup(QString::number(i));
- ntpSrvs.writeEntry( "name", ComboNtpSrv->text(i) );
+ ntpSrvs.writeEntry( "name", ComboNtpSrv->text(i-1) );
}
@@ -118,3 +122,3 @@ void Ntp::saveConfig(){
cfg.setGroup("settings");
- cfg.writeEntry("ntpServer", ComboNtpSrv->currentItem());
+ cfg.writeEntry("ntpServer", curSrv );
cfg.writeEntry( "minLookupDiff", SpinBoxMinLookupDelay->value() );