author | tille <tille> | 2002-11-17 16:41:01 (UTC) |
---|---|---|
committer | tille <tille> | 2002-11-17 16:41:01 (UTC) |
commit | bf2e3a43fb586274fd5aa67941a9a8671180628d (patch) (side-by-side diff) | |
tree | 7d2dae34898825dbe24fad74eec8de0e85f51bc2 | |
parent | 290ed6c181bdb212fe5ba004c3c5eeaff0170951 (diff) | |
download | opie-bf2e3a43fb586274fd5aa67941a9a8671180628d.zip opie-bf2e3a43fb586274fd5aa67941a9a8671180628d.tar.gz opie-bf2e3a43fb586274fd5aa67941a9a8671180628d.tar.bz2 |
saving bug fix
-rw-r--r-- | noncore/settings/netsystemtime/ntp.cpp | 16 |
1 files changed, 10 insertions, 6 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 @@ -101,4 +101,5 @@ void Ntp::saveConfig(){ int srvCount = ComboNtpSrv->count(); bool serversChanged = true; + int curSrv = ComboNtpSrv->currentItem(); QString edit = ComboNtpSrv->currentText(); for (int i = 0; i < srvCount; i++){ @@ -106,16 +107,19 @@ 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) ); } } Config cfg("ntp",Config::User); cfg.setGroup("settings"); - cfg.writeEntry("ntpServer", ComboNtpSrv->currentItem()); + cfg.writeEntry("ntpServer", curSrv ); cfg.writeEntry( "minLookupDiff", SpinBoxMinLookupDelay->value() ); cfg.writeEntry( "ntpRefreshFreq", SpinBoxNtpDelay->value() ); @@ -433,3 +437,3 @@ void Ntp::reject( ){ commitTime(); } -}
\ No newline at end of file +} |