SVN commit 587988 by winterz: forward port SVN commit 587425 by winterz: don't show "Today" as the starting date for multi-day events; use the actual date instead. M +3 -1 apptsummarywidget.cpp --- trunk/KDE/kdepim/kontact/plugins/korganizer/apptsummarywidget.cpp #587987:587988 @@ -178,7 +178,9 @@ // Print the date span for multiday, floating events, for the // first day of the event only. if ( ev->isMultiDay() && ev->doesFloat() && dayof == 1 && span > 1 ) { - str += " -\n " + KGlobal::locale()->formatDate( sD.addDays( span-1 ) ); + str = KGlobal::locale()->formatDate( ev->dtStart().date() ); + str += " -\n " + + KGlobal::locale()->formatDate( sD.addDays( span-1 ) ); } label = new QLabel( str, this );