summaryrefslogtreecommitdiff
authortille <tille>2002-11-10 21:56:47 (UTC)
committer tille <tille>2002-11-10 21:56:47 (UTC)
commit0e357841ca8ff0f38bdb4ac7c2883ded2c407810 (patch) (unidiff)
treed2283dcdca4e85a8435689291afec45e5c34a5f4
parent727eb9283d10cf61cc7f7a8506124cab9f37f2ed (diff)
downloadopie-0e357841ca8ff0f38bdb4ac7c2883ded2c407810.zip
opie-0e357841ca8ff0f38bdb4ac7c2883ded2c407810.tar.gz
opie-0e357841ca8ff0f38bdb4ac7c2883ded2c407810.tar.bz2
only show popup if visible
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/netsystemtime/ntp.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/noncore/settings/netsystemtime/ntp.cpp b/noncore/settings/netsystemtime/ntp.cpp
index 111f7d4..6e74e32 100644
--- a/noncore/settings/netsystemtime/ntp.cpp
+++ b/noncore/settings/netsystemtime/ntp.cpp
@@ -167,30 +167,31 @@ void Ntp::getNtpOutput(OProcess *proc, char *buffer, int buflen)
167 { 167 {
168 ntpOutPut(lineStr); 168 ntpOutPut(lineStr);
169 _ntpOutput += lineStr; 169 _ntpOutput += lineStr;
170 } 170 }
171 lineStrOld = lineStr; 171 lineStrOld = lineStr;
172} 172}
173 173
174void Ntp::ntpFinished(OProcess *p) 174void Ntp::ntpFinished(OProcess *p)
175{ 175{
176 qDebug("p->exitStatus() %i",p->exitStatus()); 176 qDebug("p->exitStatus() %i",p->exitStatus());
177 if (p->exitStatus()!=0 || !p->normalExit()) 177 if (p->exitStatus()!=0 || !p->normalExit())
178 { 178 {
179 QMessageBox::critical(this, tr("ntp error"), 179 if ( isVisible() ) {
180 QMessageBox::critical(this, tr("ntp error"),
180 tr("Error while getting time form\n server")+ 181 tr("Error while getting time form\n server")+
181 getNtpServer()+"\n"+ 182 getNtpServer()+"\n"+
182 _ntpOutput ); 183 _ntpOutput );
183 // TabWidgetMain->setCurrentPage( 1 ); 184 TabWidgetMain->showPage( tabManualSetTime );
184 TabWidgetMain->showPage( tabManualSetTime ); 185 }
185 186
186 return; 187 return;
187 } 188 }
188 189
189 Global::writeHWClock(); 190 Global::writeHWClock();
190 // since time has changed quickly load in the datebookdb 191 // since time has changed quickly load in the datebookdb
191 // to allow the alarm server to get a better grip on itself 192 // to allow the alarm server to get a better grip on itself
192 // (example re-trigger alarms for when we travel back in time) 193 // (example re-trigger alarms for when we travel back in time)
193 DateBookDB db; 194 DateBookDB db;
194 195
195 // QCopEnvelope timeApplet( "QPE/TaskBar", "reloadApplets()" ); 196 // QCopEnvelope timeApplet( "QPE/TaskBar", "reloadApplets()" );
196 // timeApplet << ""; 197 // timeApplet << "";