summaryrefslogtreecommitdiff
path: root/core/pim/datebook/datebookweek.cpp
authorharlekin <harlekin>2003-02-11 22:27:27 (UTC)
committer harlekin <harlekin>2003-02-11 22:27:27 (UTC)
commitee67394120b5436d955d64a21b8ea707b57ac0c0 (patch) (unidiff)
tree7bff77ad9e116ed103068f69aee19671ec8a1680 /core/pim/datebook/datebookweek.cpp
parente7ebea116b82577d861cba0650a80b12900b2e24 (diff)
downloadopie-ee67394120b5436d955d64a21b8ea707b57ac0c0.zip
opie-ee67394120b5436d955d64a21b8ea707b57ac0c0.tar.gz
opie-ee67394120b5436d955d64a21b8ea707b57ac0c0.tar.bz2
fix for bugreport #664, show also location in popups in datebooks weekview
Diffstat (limited to 'core/pim/datebook/datebookweek.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/datebook/datebookweek.cpp12
1 files changed, 10 insertions, 2 deletions
diff --git a/core/pim/datebook/datebookweek.cpp b/core/pim/datebook/datebookweek.cpp
index e16f516..ddd41af 100644
--- a/core/pim/datebook/datebookweek.cpp
+++ b/core/pim/datebook/datebookweek.cpp
@@ -513,6 +513,13 @@ void DateBookWeek::slotShowEvent( const EffectiveEvent &ev )
513 // where = strCat.find( "<", where ); 513 // where = strCat.find( "<", where );
514// } 514// }
515 515
516 QString strLocation = ev.location();
517 while ( where != -1 ) {
518 strLocation.remove( where, 1 );
519 strLocation.insert( where, "&#60;" );
520 where = strLocation.find( "<", where );
521 }
522
516 QString strNote = ev.notes(); 523 QString strNote = ev.notes();
517 where = strNote.find( "<" ); 524 where = strNote.find( "<" );
518 while ( where != -1 ) { 525 while ( where != -1 ) {
@@ -521,8 +528,9 @@ void DateBookWeek::slotShowEvent( const EffectiveEvent &ev )
521 where = strNote.find( "<", where ); 528 where = strNote.find( "<", where );
522 } 529 }
523 530
524 QString str = "<b>" + strDesc + "</b><br>" + "<i>" 531 QString str = "<b>" + strDesc + "</b><br>"
525 + strCat + "</i>" 532 + strLocation + "<br>"
533 + "<i>" + strCat + "</i>"
526 + "<br>" + TimeString::longDateString( ev.date() ) 534 + "<br>" + TimeString::longDateString( ev.date() )
527 + "<br>"; 535 + "<br>";
528 536