author | harlekin <harlekin> | 2002-04-10 16:57:56 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-04-10 16:57:56 (UTC) |
commit | bbc11689a4f22d825a75b456811f3c8f0031b37d (patch) (unidiff) | |
tree | fb46122714b556946b556a94bd19cbe8652705e6 | |
parent | 34e0e7af48992314d461be1a5a573dc0967fe260 (diff) | |
download | opie-bbc11689a4f22d825a75b456811f3c8f0031b37d.zip opie-bbc11689a4f22d825a75b456811f3c8f0031b37d.tar.gz opie-bbc11689a4f22d825a75b456811f3c8f0031b37d.tar.bz2 |
fix
-rw-r--r-- | core/pim/today/today.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/pim/today/today.cpp b/core/pim/today/today.cpp index 028947d..3d17379 100644 --- a/core/pim/today/today.cpp +++ b/core/pim/today/today.cpp | |||
@@ -537,25 +537,25 @@ DateBookEventLater::DateBookEventLater(const EffectiveEvent &ev, | |||
537 | if ( (ev).event().hasAlarm() ) { | 537 | if ( (ev).event().hasAlarm() ) { |
538 | msg += " <b>[with alarm]</b>"; | 538 | msg += " <b>[with alarm]</b>"; |
539 | } | 539 | } |
540 | // include location or not | 540 | // include location or not |
541 | if (SHOW_LOCATION == 1) { | 541 | if (SHOW_LOCATION == 1) { |
542 | msg += "<BR><i>" + (ev).location() + "</i>"; | 542 | msg += "<BR><i>" + (ev).location() + "</i>"; |
543 | } | 543 | } |
544 | 544 | ||
545 | if ( (TimeString::timeString(QTime((ev).event().start().time()) ) == "00:00") && (TimeString::timeString(QTime((ev).event().end().time()) ) == "23:59") ) { | 545 | if ( (TimeString::timeString(QTime((ev).event().start().time()) ) == "00:00") && (TimeString::timeString(QTime((ev).event().end().time()) ) == "23:59") ) { |
546 | msg += "<br>All day"; | 546 | msg += "<br>All day"; |
547 | } else { | 547 | } else { |
548 | // start time of event | 548 | // start time of event |
549 | msg += "<br>" + ampmTime(QTime((ev).event().start().time()) ) | 549 | msg += "<br>" + ampmTime(QTime((ev).event().start().time()) ); |
550 | // end time of event | 550 | // end time of event |
551 | + "<b> - </b>" + ampmTime(QTime((ev).event().end().time()) ); | 551 | + "<b> - </b>" + ampmTime(QTime((ev).event().end().time()) ); |
552 | } | 552 | } |
553 | // include possible note or not | 553 | // include possible note or not |
554 | if (SHOW_NOTES == 1) { | 554 | if (SHOW_NOTES == 1) { |
555 | msg += "<br> <i>note</i>:" +((ev).notes()).mid(0, MAX_CHAR_CLIP); | 555 | msg += "<br> <i>note</i>:" +((ev).notes()).mid(0, MAX_CHAR_CLIP); |
556 | } | 556 | } |
557 | } | 557 | } |
558 | 558 | ||
559 | setText(msg); | 559 | setText(msg); |
560 | connect(this, SIGNAL(clicked()), this, SLOT(editMe())); | 560 | connect(this, SIGNAL(clicked()), this, SLOT(editMe())); |
561 | setAlignment( int( QLabel::WordBreak | QLabel::AlignLeft ) ); | 561 | setAlignment( int( QLabel::WordBreak | QLabel::AlignLeft ) ); |