summaryrefslogtreecommitdiff
authorfbarros <fbarros>2002-08-29 17:49:16 (UTC)
committer fbarros <fbarros>2002-08-29 17:49:16 (UTC)
commit6707dd2b7abf2fac4aef4025cf8e554577d0891c (patch) (unidiff)
tree0991d5274dc372dc089368deac74abb96ad6e413
parentf30d948cc7fec19a00ebc131b5b1ace159212a81 (diff)
downloadopie-6707dd2b7abf2fac4aef4025cf8e554577d0891c.zip
opie-6707dd2b7abf2fac4aef4025cf8e554577d0891c.tar.gz
opie-6707dd2b7abf2fac4aef4025cf8e554577d0891c.tar.bz2
just a tr()
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
@@ -396,49 +396,49 @@ void Clock::appMessage(const QCString& msg, const QByteArray& data)
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 );