-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | core/pim/today/plugins/datebook/datebookevent.cpp | 6 |
2 files changed, 6 insertions, 2 deletions
@@ -2,8 +2,10 @@ Fixed Bugs ---------- * n.a. - scale O-Menu-Applets appropriately (mickeyl) + * #1535 - Missing line break and unnecessary location shown with Today-Calendar plugin (deller) + * n.a. - always show volume and wireless applet popups inside visible screen (deller) 2005-03-25 Opie 1.2.0 Fixed Bugs diff --git a/core/pim/today/plugins/datebook/datebookevent.cpp b/core/pim/today/plugins/datebook/datebookevent.cpp index f5b0d0a..a540327 100644 --- a/core/pim/today/plugins/datebook/datebookevent.cpp +++ b/core/pim/today/plugins/datebook/datebookevent.cpp @@ -49,24 +49,26 @@ DateBookEvent::DateBookEvent(const EffectiveEvent &ev, msg += " <b>" + tr("[with alarm]") +"</b>"; } // include location or not - if ( show_location ) { + if ( show_location && !(ev).location().isEmpty() ) { + if ( (ev).location() != tr("(Unknown)") ) msg += "<BR><i>" + (ev).location() + "</i>"; } QString timeSpacer = " "; if ( timeExtraLine ) { timeSpacer = "<br>"; } + msg += timeSpacer; + if ( ( TimeString::timeString( QTime( (ev).event().start().time() ) ) == "00:00" ) && ( TimeString::timeString( QTime( (ev).event().end().time() ) ) == "23:59" ) ) { msg += tr ( "All day" ); } else { // start time of event // QDate tempDate = (ev).event().start().date(); - msg += timeSpacer; msg += ampmTime( QTime( (ev).event().start().time() ) ) // end time of event + "<b> - </b>" + ampmTime( QTime( (ev).event().end().time() ) ); } |