-rw-r--r-- | bin/kdepim/WhatsNew.txt | 2 | ||||
-rw-r--r-- | libkcal/sharpformat.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/bin/kdepim/WhatsNew.txt b/bin/kdepim/WhatsNew.txt index 1fd5364..1c5e83b 100644 --- a/bin/kdepim/WhatsNew.txt +++ b/bin/kdepim/WhatsNew.txt @@ -10,4 +10,6 @@ Fixed a problem creating new events in the agenda view if at the day/time is alr Now you can click on the bottom/top of an allday agenda item or on the left/right side of an agenda item to get the "new todo/new event" popup. +Fixed a problem in recurrence range in syncing with DTM. + PwM/Pi: diff --git a/libkcal/sharpformat.cpp b/libkcal/sharpformat.cpp index c2ee2c9..9b757f7 100644 --- a/libkcal/sharpformat.cpp +++ b/libkcal/sharpformat.cpp @@ -824,5 +824,5 @@ QString SharpFormat::getEventString( Event* event ) if ( rec->endDate().isValid() ) { // 15 + 16 list.append( "1" ); - list.append( dtToString( rec->endDate()) ); + list.append( dtToString( rec->endDate(), false ) ); } else { list.append( "0" ); |