| Summary: | find journals doesn't display journal title | ||
|---|---|---|---|
| Product: | [Applications] korganizer | Reporter: | j joseph benavidez <hasuf> |
| Component: | general | Assignee: | kdepim bugs <pim-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Fedora RPMs | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
j joseph benavidez
2006-08-25 00:21:04 UTC
Confirmed, KDE 3.5.5 Reassigning all KOrganizer bug reports and wishes to the newly created korganizer-devel mailing list. Here is a patch against korganizers kolistview.
--- kolistview.cpp~ 2006-10-01 19:30:39.000000000 +0200
+++ kolistview.cpp 2007-01-29 08:19:05.000000000 +0100
@@ -183,8 +183,8 @@
{
static const QPixmap jrnalPxmp = KOGlobals::self()->smallIcon( "journal" );
mItem->setPixmap(0,jrnalPxmp);
- // Just use the first line
- mItem->setText( 0, t->description().section( "\n", 0, 0 ) );
+ // Journal entries have a summary!
+ mItem->setText( 0, t->summary() );
mItem->setText( 3, t->dtStartDateStr() );
mItem->setSortKey( 3, t->dtStart().toString(Qt::ISODate) );
SVN commit 628136 by winterz:
Fix for "find journals doesn't display journal title".
Thanks for the patch Lars.
BUGS: 132947
M +8 -5 kolistview.cpp
--- branches/KDE/3.5/kdepim/korganizer/kolistview.cpp #628135:628136
@@ -179,15 +179,18 @@
return true;
}
-bool KOListView::ListItemVisitor::visit(Journal *t)
+bool KOListView::ListItemVisitor::visit( Journal *t )
{
static const QPixmap jrnalPxmp = KOGlobals::self()->smallIcon( "journal" );
- mItem->setPixmap(0,jrnalPxmp);
- // Just use the first line
- mItem->setText( 0, t->description().section( "\n", 0, 0 ) );
+ mItem->setPixmap( 0, jrnalPxmp );
+ if ( t->summary().isEmpty() ) {
+ mItem->setText( 0, t->description().section( "\n", 0, 0 ) );
+ } else {
+ mItem->setText( 0, t->summary() );
+ }
mItem->setText( 3, t->dtStartDateStr() );
- mItem->setSortKey( 3, t->dtStart().toString(Qt::ISODate) );
+ mItem->setSortKey( 3, t->dtStart().toString( Qt::ISODate ) );
return true;
}
|