author | zautrix <zautrix> | 2004-08-29 14:26:12 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-08-29 14:26:12 (UTC) |
commit | 78f44f13835e3fa501997f485b505b193bd474f5 (patch) (side-by-side diff) | |
tree | 749dbe90d67997e551568d19d3cd40a96fbe29af /korganizer | |
parent | 3a5648d8378b44cbe12d66bafa3d557c065f0f6d (diff) | |
download | kdepimpi-78f44f13835e3fa501997f485b505b193bd474f5.zip kdepimpi-78f44f13835e3fa501997f485b505b193bd474f5.tar.gz kdepimpi-78f44f13835e3fa501997f485b505b193bd474f5.tar.bz2 |
Bugfix for changed todo in WN view
-rw-r--r-- | korganizer/calendarview.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/korganizer/calendarview.cpp b/korganizer/calendarview.cpp index 7eca69d..7444bad 100644 --- a/korganizer/calendarview.cpp +++ b/korganizer/calendarview.cpp @@ -1870,6 +1870,14 @@ void CalendarView::eventDeleted() void CalendarView::changeTodoDisplay(Todo *which, int action) { changeIncidenceDisplay((Incidence *)which, action); + mDateNavigator->updateView(); + //mDialogManager->updateSearchDialog(); + + if (which) { + mViewManager->currentView()->updateView(); + mTodoList->updateView(); + } + } void CalendarView::changeIncidenceDisplay(Incidence *which, int action) |