author | tille <tille> | 2002-09-03 17:03:09 (UTC) |
---|---|---|
committer | tille <tille> | 2002-09-03 17:03:09 (UTC) |
commit | cbaf36b21e8d469c7eb87fa9ab15e67401fb85c5 (patch) (side-by-side diff) | |
tree | 9e3210522cef2f5d21405d177c25d64e35d4d83b | |
parent | 00167bff9a1fff9ec36b9eb7c518a735e1a5b42c (diff) | |
download | opie-cbaf36b21e8d469c7eb87fa9ab15e67401fb85c5.zip opie-cbaf36b21e8d469c7eb87fa9ab15e67401fb85c5.tar.gz opie-cbaf36b21e8d469c7eb87fa9ab15e67401fb85c5.tar.bz2 |
fixed vanishing applets bug, that is avoided it by not calling
qcop QPE/taskbar reloadApplets()
-rw-r--r-- | noncore/settings/netsystemtime/ntp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/settings/netsystemtime/ntp.cpp b/noncore/settings/netsystemtime/ntp.cpp index 6c5aaf5..9572993 100644 --- a/noncore/settings/netsystemtime/ntp.cpp +++ b/noncore/settings/netsystemtime/ntp.cpp @@ -134,50 +134,50 @@ void Ntp::getNtpOutput(OProcess *proc, char *buffer, int buflen) lineStr=lineStr.left(buflen); if (lineStr!=lineStrOld) { ntpOutPut(lineStr); _ntpOutput += lineStr; } lineStrOld = lineStr; } void Ntp::ntpFinished(OProcess *p) { qDebug("p->exitStatus() %i",p->exitStatus()); if (p->exitStatus()!=0 || !p->normalExit()) { slotProbeNtpServer(); return; } Global::writeHWClock(); // since time has changed quickly load in the datebookdb // to allow the alarm server to get a better grip on itself // (example re-trigger alarms for when we travel back in time) DateBookDB db; - QCopEnvelope timeApplet( "QPE/TaskBar", "reloadApplets()" ); - timeApplet << ""; +// QCopEnvelope timeApplet( "QPE/TaskBar", "reloadApplets()" ); +// timeApplet << ""; Config cfg("ntp",Config::User); cfg.setGroup("lookups"); int lastLookup = cfg.readNumEntry("time",0); int lookupCount = cfg.readNumEntry("count",0); bool lastNtp = cfg.readBoolEntry("lastNtp",false); int time = TimeConversion::toUTC( QDateTime::currentDateTime() ); cfg.writeEntry("time", time); float timeShift = getTimeShift(); if (timeShift == 0.0) return; int secsSinceLast = time - lastLookup; TextLabelNewTime->setText(QDateTime::currentDateTime().toString()); TextLabelTimeShift->setText(QString::number(timeShift)+tr(" seconds")); if ( lastNtp && lastLookup > 0 && secsSinceLast > 60* SpinBoxMinLookupDelay->value()) { cfg.setGroup("lookup_"+QString::number(lookupCount)); lookupCount++; _shiftPerSec = timeShift / secsSinceLast; qDebug("secs since last lookup %i", secsSinceLast);qDebug("timeshift since last lookup %f", timeShift);qDebug("timeshift since per sec %f", _shiftPerSec); cfg.writeEntry("secsSinceLast",secsSinceLast); cfg.writeEntry("timeShift",QString::number(timeShift)); cfg.setGroup("lookups"); cfg.writeEntry("count",lookupCount); |