-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | core/pim/today/plugins/datebook/datebookevent.cpp | 8 |
2 files changed, 7 insertions, 3 deletions
@@ -3,6 +3,8 @@ | |||
3 | Fixed Bugs | 3 | Fixed Bugs |
4 | ---------- | 4 | ---------- |
5 | * n.a.- scale O-Menu-Applets appropriately (mickeyl) | 5 | * n.a.- scale O-Menu-Applets appropriately (mickeyl) |
6 | * #1535- Missing line break and unnecessary location shown with Today-Calendar plugin (deller) | ||
7 | * n.a.- always show volume and wireless applet popups inside visible screen (deller) | ||
6 | 8 | ||
7 | 2005-03-25Opie 1.2.0 | 9 | 2005-03-25Opie 1.2.0 |
8 | 10 | ||
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 | |||
@@ -50,8 +50,9 @@ DateBookEvent::DateBookEvent(const EffectiveEvent &ev, | |||
50 | } | 50 | } |
51 | 51 | ||
52 | // include location or not | 52 | // include location or not |
53 | if ( show_location ) { | 53 | if ( show_location && !(ev).location().isEmpty() ) { |
54 | msg += "<BR><i>" + (ev).location() + "</i>"; | 54 | if ( (ev).location() != tr("(Unknown)") ) |
55 | msg += "<BR><i>" + (ev).location() + "</i>"; | ||
55 | } | 56 | } |
56 | 57 | ||
57 | QString timeSpacer = " "; | 58 | QString timeSpacer = " "; |
@@ -59,13 +60,14 @@ DateBookEvent::DateBookEvent(const EffectiveEvent &ev, | |||
59 | timeSpacer = "<br>"; | 60 | timeSpacer = "<br>"; |
60 | } | 61 | } |
61 | 62 | ||
63 | msg += timeSpacer; | ||
64 | |||
62 | if ( ( TimeString::timeString( QTime( (ev).event().start().time() ) ) == "00:00" ) | 65 | if ( ( TimeString::timeString( QTime( (ev).event().start().time() ) ) == "00:00" ) |
63 | && ( TimeString::timeString( QTime( (ev).event().end().time() ) ) == "23:59" ) ) { | 66 | && ( TimeString::timeString( QTime( (ev).event().end().time() ) ) == "23:59" ) ) { |
64 | msg += tr ( "All day" ); | 67 | msg += tr ( "All day" ); |
65 | } else { | 68 | } else { |
66 | // start time of event | 69 | // start time of event |
67 | // QDate tempDate = (ev).event().start().date(); | 70 | // QDate tempDate = (ev).event().start().date(); |
68 | msg += timeSpacer; | ||
69 | msg += ampmTime( QTime( (ev).event().start().time() ) ) | 71 | msg += ampmTime( QTime( (ev).event().start().time() ) ) |
70 | // end time of event | 72 | // end time of event |
71 | + "<b> - </b>" + ampmTime( QTime( (ev).event().end().time() ) ); | 73 | + "<b> - </b>" + ampmTime( QTime( (ev).event().end().time() ) ); |