-rw-r--r-- | libkcal/todo.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libkcal/todo.cpp b/libkcal/todo.cpp index 4ada2d8..7bf756a 100644 --- a/libkcal/todo.cpp +++ b/libkcal/todo.cpp @@ -68,2 +68,3 @@ void Todo::setRunningFalse( QString s ) mRunning = false; + if ( mRunSaveTimer ) mRunSaveTimer->stop(); @@ -141,3 +142,3 @@ void Todo::saveRunningInfoToFile( QString comment ) cal.addIncidence( to ); - ICalFormat format; + ICalFormat format( false ); file = dir +"/" +file +".ics"; @@ -169,3 +170,3 @@ void Todo::saveParents() cal.addIncidence( par ); - ICalFormat format; + ICalFormat format( false ); format.save( &cal, file ); |