-rw-r--r-- | noncore/settings/netsystemtime/ntp.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/noncore/settings/netsystemtime/ntp.cpp b/noncore/settings/netsystemtime/ntp.cpp index bcbf7a1..b2f5332 100644 --- a/noncore/settings/netsystemtime/ntp.cpp +++ b/noncore/settings/netsystemtime/ntp.cpp | |||
@@ -253,30 +253,29 @@ void Ntp::slotCheckNtp(int i) | |||
253 | }else{ | 253 | }else{ |
254 | disconnect(ntpTimer, SIGNAL( timeout() ), this, SLOT(slotRunNtp()) ); | 254 | disconnect(ntpTimer, SIGNAL( timeout() ), this, SLOT(slotRunNtp()) ); |
255 | connect(ntpTimer, SIGNAL( timeout() ), SLOT(slotProbeNtpServer()) ); | 255 | connect(ntpTimer, SIGNAL( timeout() ), SLOT(slotProbeNtpServer()) ); |
256 | } | 256 | } |
257 | }else{ | 257 | }else{ |
258 | preditctTime(); | 258 | preditctTime(); |
259 | ButtonSetTime->setText( tr("Set predicted time") ); | 259 | ButtonSetTime->setText( tr("Set predicted time") ); |
260 | if (i>0)ntpOutPut(tr("Could not connect to server ")+getNtpServer()); | 260 | if (i>0)ntpOutPut(tr("Could not connect to server ")+getNtpServer()); |
261 | connect( ButtonSetTime, SIGNAL(clicked()), SLOT(setPredictTime()) ); | 261 | connect( ButtonSetTime, SIGNAL(clicked()), SLOT(setPredictTime()) ); |
262 | connect( ntpTimer, SIGNAL( timeout() ), SLOT(slotProbeNtpServer()) ); | 262 | connect( ntpTimer, SIGNAL( timeout() ), SLOT(slotProbeNtpServer()) ); |
263 | } | 263 | } |
264 | //ntpTimer->start(SpinBoxNtpDelay->value()*1000*60); | 264 | //ntpTimer->start(SpinBoxNtpDelay->value()*1000*60); |
265 | } | 265 | } |
266 | 266 | ||
267 | void Ntp::slotProbeNtpServer() | 267 | void Ntp::slotProbeNtpServer() |
268 | { | 268 | { |
269 | if ( ntpDelayElapsed() ) | 269 | ntpSock->connectToHost( getNtpServer() ,123); |
270 | ntpSock->connectToHost( getNtpServer() ,123); | ||
271 | } | 270 | } |
272 | 271 | ||
273 | void Ntp::slotNtpDelayChanged(int delay) | 272 | void Ntp::slotNtpDelayChanged(int delay) |
274 | { | 273 | { |
275 | ntpTimer->changeInterval( delay*1000*60 ); | 274 | ntpTimer->changeInterval( delay*1000*60 ); |
276 | } | 275 | } |
277 | 276 | ||
278 | void Ntp::ntpOutPut(QString out) | 277 | void Ntp::ntpOutPut(QString out) |
279 | { | 278 | { |
280 | MultiLineEditntpOutPut->append(out); | 279 | MultiLineEditntpOutPut->append(out); |
281 | MultiLineEditntpOutPut->setCursorPosition(MultiLineEditntpOutPut->numLines() + 1,0,FALSE); | 280 | MultiLineEditntpOutPut->setCursorPosition(MultiLineEditntpOutPut->numLines() + 1,0,FALSE); |
282 | } | 281 | } |