author | zecke <zecke> | 2003-05-07 17:44:59 (UTC) |
---|---|---|
committer | zecke <zecke> | 2003-05-07 17:44:59 (UTC) |
commit | ac895871f93dce9734189daf9cb95dbbda605096 (patch) (side-by-side diff) | |
tree | 18f34fcdeededd689ea9b7a3f8fd9d76d2e22282 | |
parent | 1cee00987d34729393fb9383d90babd39517cc68 (diff) | |
download | opie-ac895871f93dce9734189daf9cb95dbbda605096.zip opie-ac895871f93dce9734189daf9cb95dbbda605096.tar.gz opie-ac895871f93dce9734189daf9cb95dbbda605096.tar.bz2 |
one more
-rw-r--r-- | core/pim/todo/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/pim/todo/mainwindow.cpp b/core/pim/todo/mainwindow.cpp index 77cbe17..c5cedc6 100644 --- a/core/pim/todo/mainwindow.cpp +++ b/core/pim/todo/mainwindow.cpp @@ -700,17 +700,17 @@ void MainWindow::slotComplete( const OTodo& todo ) { /* * if the item does recur * we need to spin it off * and update the items duedate to the next * possible recurrance of this item... * the spinned off one will loose the */ - if ( to.recurrence().doesRecur() && to.isCompleted() ) { + if ( to.hasRecurrence() && to.isCompleted() ) { OTodo to2( to ); /* the spinned off one won't recur anymore */ to.setRecurrence( ORecur() ); ORecur rec = to2.recurrence(); rec.setStart( to.dueDate() ); to2.setRecurrence( rec ); |