summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/tools/clock/clock.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/tools/clock/clock.cpp b/noncore/tools/clock/clock.cpp
index 69d8214..e3621d9 100644
--- a/noncore/tools/clock/clock.cpp
+++ b/noncore/tools/clock/clock.cpp
@@ -388,65 +388,65 @@ void Clock::appMessage(const QCString& msg, const QByteArray& data)
388 qDebug("Message received in clock"); 388 qDebug("Message received in clock");
389 if ( msg == "alarm(QDateTime,int)" ) { 389 if ( msg == "alarm(QDateTime,int)" ) {
390 Config config( "qpe" ); 390 Config config( "qpe" );
391 config.setGroup("Time"); 391 config.setGroup("Time");
392 if(config.readBoolEntry("mp3Alarm",0)){ 392 if(config.readBoolEntry("mp3Alarm",0)){
393 393
394 QCopEnvelope e("QPE/Application/opieplayer","setDocument(QString)"); 394 QCopEnvelope e("QPE/Application/opieplayer","setDocument(QString)");
395 e<<config.readEntry("mp3File",""); 395 e<<config.readEntry("mp3File","");
396 } else { 396 } else {
397 397
398 Sound::soundAlarm(); 398 Sound::soundAlarm();
399 stopTimer = startTimer( timerStay); 399 stopTimer = startTimer( timerStay);
400 } 400 }
401 } 401 }
402 show(); 402 show();
403 raise(); 403 raise();
404 QPEApplication::setKeepRunning(); 404 QPEApplication::setKeepRunning();
405 setActiveWindow(); 405 setActiveWindow();
406} 406}
407 407
408void Clock::timerEvent( QTimerEvent *e ) 408void Clock::timerEvent( QTimerEvent *e )
409{ 409{
410 static int stop = 0; 410 static int stop = 0;
411 if ( stop < 120 && bSound) { 411 if ( stop < 120 && bSound) {
412 Sound::soundAlarm(); 412 Sound::soundAlarm();
413 stop++; 413 stop++;
414 } else { 414 } else {
415 stop = 0; 415 stop = 0;
416 killTimer( e->timerId() ); 416 killTimer( e->timerId() );
417 alarmOffBtn->setText( tr( "Alarm Is Off" ) ); 417 alarmOffBtn->setText( tr( "Alarm Is Off" ) );
418 alarmBool=FALSE; 418 alarmBool=FALSE;
419 snoozeBtn->hide(); 419 snoozeBtn->hide();
420 setCaption("Clock: Alarm was missed."); 420 setCaption(tr("Clock: Alarm was missed."));
421 } 421 }
422} 422}
423 423
424 424
425QSizePolicy AnalogClock::sizePolicy() const 425QSizePolicy AnalogClock::sizePolicy() const
426{ 426{
427 return QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding ); 427 return QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding );
428} 428}
429 429
430void AnalogClock::drawContents( QPainter *p ) 430void AnalogClock::drawContents( QPainter *p )
431{ 431{
432 QRect r = contentsRect(); 432 QRect r = contentsRect();
433 QPoint center( r.x() + r.width() / 2, r.y() + r.height() / 2 ); 433 QPoint center( r.x() + r.width() / 2, r.y() + r.height() / 2 );
434 434
435 QPoint l1( r.x() + r.width() / 2, r.y() + 2 ); 435 QPoint l1( r.x() + r.width() / 2, r.y() + 2 );
436 QPoint l2( r.x() + r.width() / 2, r.y() + 8 ); 436 QPoint l2( r.x() + r.width() / 2, r.y() + 8 );
437 437
438 QPoint h1( r.x() + r.width() / 2, r.y() + r.height() / 4 ); 438 QPoint h1( r.x() + r.width() / 2, r.y() + r.height() / 4 );
439 QPoint h2( r.x() + r.width() / 2, r.y() + r.height() / 2 ); 439 QPoint h2( r.x() + r.width() / 2, r.y() + r.height() / 2 );
440 440
441 QPoint m1( r.x() + r.width() / 2, r.y() + r.height() / 8 ); 441 QPoint m1( r.x() + r.width() / 2, r.y() + r.height() / 8 );
442 QPoint m2( r.x() + r.width() / 2, r.y() + r.height() / 2 ); 442 QPoint m2( r.x() + r.width() / 2, r.y() + r.height() / 2 );
443 443
444 QPoint s1( r.x() + r.width() / 2, r.y() + 8 ); 444 QPoint s1( r.x() + r.width() / 2, r.y() + 8 );
445 QPoint s2( r.x() + r.width() / 2, r.y() + r.height() / 2 ); 445 QPoint s2( r.x() + r.width() / 2, r.y() + r.height() / 2 );
446 446
447 QColor color( clear ? backgroundColor() : black ); 447 QColor color( clear ? backgroundColor() : black );
448 QTime time = clear ? prevTime : currTime; 448 QTime time = clear ? prevTime : currTime;
449 449
450 if ( clear && prevTime.secsTo(currTime) > 1 ) { 450 if ( clear && prevTime.secsTo(currTime) > 1 ) {
451 p->eraseRect( rect() ); 451 p->eraseRect( rect() );
452 return; 452 return;