author | zautrix <zautrix> | 2004-09-20 13:55:25 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-09-20 13:55:25 (UTC) |
commit | f222bd1339ac8323e3c99af84a6f83c21cacb8f8 (patch) (unidiff) | |
tree | bb56c3ff65506007eb48cea896d5893f70893261 | |
parent | b01b669d88fa195261d29ecf73b1c69e608a5ebc (diff) | |
download | kdepimpi-f222bd1339ac8323e3c99af84a6f83c21cacb8f8.zip kdepimpi-f222bd1339ac8323e3c99af84a6f83c21cacb8f8.tar.gz kdepimpi-f222bd1339ac8323e3c99af84a6f83c21cacb8f8.tar.bz2 |
Fix todo crash
-rw-r--r-- | korganizer/calendarview.cpp | 4 | ||||
-rw-r--r-- | korganizer/kotodoview.cpp | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/korganizer/calendarview.cpp b/korganizer/calendarview.cpp index 8e83723..ba0e6c6 100644 --- a/korganizer/calendarview.cpp +++ b/korganizer/calendarview.cpp | |||
@@ -1929,17 +1929,17 @@ void CalendarView::eventDeleted() | |||
1929 | { | 1929 | { |
1930 | changeEventDisplay(0,KOGlobals::EVENTDELETED); | 1930 | changeEventDisplay(0,KOGlobals::EVENTDELETED); |
1931 | } | 1931 | } |
1932 | void CalendarView::changeTodoDisplay(Todo *which, int action) | 1932 | void CalendarView::changeTodoDisplay(Todo *which, int action) |
1933 | { | 1933 | { |
1934 | changeIncidenceDisplay((Incidence *)which, action); | 1934 | changeIncidenceDisplay((Incidence *)which, action); |
1935 | mDateNavigator->updateView(); | 1935 | mDateNavigator->updateView(); //LR |
1936 | //mDialogManager->updateSearchDialog(); | 1936 | //mDialogManager->updateSearchDialog(); |
1937 | 1937 | ||
1938 | if (which) { | 1938 | if (which) { |
1939 | mViewManager->currentView()->updateView(); | 1939 | //mViewManager->currentView()->updateView();//LR |
1940 | //mTodoList->updateView(); | 1940 | //mTodoList->updateView(); |
1941 | } | 1941 | } |
1942 | 1942 | ||
1943 | } | 1943 | } |
1944 | 1944 | ||
1945 | void CalendarView::changeIncidenceDisplay(Incidence *which, int action) | 1945 | void CalendarView::changeIncidenceDisplay(Incidence *which, int action) |
diff --git a/korganizer/kotodoview.cpp b/korganizer/kotodoview.cpp index d9e0a03..da46eca 100644 --- a/korganizer/kotodoview.cpp +++ b/korganizer/kotodoview.cpp | |||
@@ -490,12 +490,18 @@ void KOTodoView::setNarrow() | |||
490 | mTodoListView->setColumnWidth( 4, 40 ); | 490 | mTodoListView->setColumnWidth( 4, 40 ); |
491 | mTodoListView->setColumnWidth( 5, 90 ); | 491 | mTodoListView->setColumnWidth( 5, 90 ); |
492 | 492 | ||
493 | } | 493 | } |
494 | void KOTodoView::updateView() | 494 | void KOTodoView::updateView() |
495 | { | 495 | { |
496 | |||
497 | if ( mBlockUpdate ) { | ||
498 | //qDebug("blocked "); | ||
499 | return; | ||
500 | } | ||
501 | //qDebug("update "); | ||
496 | // kdDebug() << "KOTodoView::updateView()" << endl; | 502 | // kdDebug() << "KOTodoView::updateView()" << endl; |
497 | QFont fo = KOPrefs::instance()->mTodoViewFont; | 503 | QFont fo = KOPrefs::instance()->mTodoViewFont; |
498 | mTodoListView->clear(); | 504 | mTodoListView->clear(); |
499 | if ( mName == "todolistsmall" ) { | 505 | if ( mName == "todolistsmall" ) { |
500 | if ( KOPrefs::instance()->mTodoViewUsesSmallFont ) { | 506 | if ( KOPrefs::instance()->mTodoViewUsesSmallFont ) { |
501 | int ps = fo.pointSize() -2; | 507 | int ps = fo.pointSize() -2; |