-rw-r--r-- | bin/kdepim/WhatsNew.txt | 5 | ||||
-rw-r--r-- | korganizer/calendarview.cpp | 3 | ||||
-rw-r--r-- | korganizer/mainwindow.cpp | 2 |
3 files changed, 6 insertions, 4 deletions
diff --git a/bin/kdepim/WhatsNew.txt b/bin/kdepim/WhatsNew.txt index 322c0e6..0ebd853 100644 --- a/bin/kdepim/WhatsNew.txt +++ b/bin/kdepim/WhatsNew.txt @@ -6,4 +6,5 @@ Info about the changes in new versions of KDE-Pim/Pi KO/Pi: -Added info about the completion sate of a todo in the ListView/Searchdialog. +Added info about the completion state of a todo in the ListView/Searchdialog. If in TodoView is selected "do not show compledted todos" then completed todos are not shown in the ListView as well. +Fixed some updating problems when changing the filter. @@ -25,3 +26,3 @@ Added more options to the dialog when setting a todo to stopped. -Fixed two small problems in KO/PiAlarm applet. +Fixed two small problems in KO/Pi Alarm applet. diff --git a/korganizer/calendarview.cpp b/korganizer/calendarview.cpp index d25f632..08909ed 100644 --- a/korganizer/calendarview.cpp +++ b/korganizer/calendarview.cpp @@ -4019,3 +4019,2 @@ void CalendarView::editFilters() while(filter) { - kdDebug() << " Filter: " << filter->name() << endl; filter = mFilters.next(); @@ -4042,2 +4041,3 @@ void CalendarView::selectFilter( int fil ) mFilterView->setSelectedFilter( fil ); + updateUnmanagedViews(); } @@ -4082,2 +4082,3 @@ void CalendarView::toggleFilerEnabled( ) topLevelWidget()->setCaption( i18n("Filter disabled ") ); + updateUnmanagedViews(); diff --git a/korganizer/mainwindow.cpp b/korganizer/mainwindow.cpp index 0367bea..48320a5 100644 --- a/korganizer/mainwindow.cpp +++ b/korganizer/mainwindow.cpp @@ -2087,3 +2087,3 @@ void MainWindow::keyPressEvent ( QKeyEvent * e ) if ( pro > 0 ) { - mView->selectFilter( pro-1 ); + selectFilter( pro+1 ); } |