author | zautrix <zautrix> | 2005-09-28 00:42:41 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-09-28 00:42:41 (UTC) |
commit | 4fb9beb1ec26f37a18f98af9d3b6b59acf8c56d2 (patch) (side-by-side diff) | |
tree | cbfbb81858c5ec08ba16e45b511ddbab539af864 | |
parent | e6112c5497b334d6dc38108b37963c5e803413d3 (diff) | |
download | kdepimpi-4fb9beb1ec26f37a18f98af9d3b6b59acf8c56d2.zip kdepimpi-4fb9beb1ec26f37a18f98af9d3b6b59acf8c56d2.tar.gz kdepimpi-4fb9beb1ec26f37a18f98af9d3b6b59acf8c56d2.tar.bz2 |
save tt fix
-rw-r--r-- | libkcal/todo.cpp | 7 | ||||
-rw-r--r-- | libkcal/todo.h | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/libkcal/todo.cpp b/libkcal/todo.cpp index 29f725f..2201814 100644 --- a/libkcal/todo.cpp +++ b/libkcal/todo.cpp @@ -108,4 +108,5 @@ void Todo::setRunning( bool run ) saveRunningInfoToFile(); } + mLastSavedFileName = ""; } void Todo::saveRunningInfo( QString comment, QDateTime start, QDateTime end ) @@ -191,4 +192,10 @@ void Todo::saveRunningInfoToFile( QString comment ) format.save( &cal, file ); saveParents(); + if ( !mLastSavedFileName.isEmpty() ) { + if ( mLastSavedFileName != file ) { + QFile::remove( mLastSavedFileName ); + } + } + mLastSavedFileName = file; #ifndef DESKTOP_VERSION //QPEApplication::setTempScreenSaverMode ( QPEApplication::Enable ); diff --git a/libkcal/todo.h b/libkcal/todo.h index 71b7a4e..2131732 100644 --- a/libkcal/todo.h +++ b/libkcal/todo.h @@ -135,4 +135,5 @@ namespace KCal { void timerSlotSaveRunningInfoToFile( ); private: + QString mLastSavedFileName; void restartSaveTimer( int secs ); int mCurrentTimerDelay; |