author | zautrix <zautrix> | 2005-04-10 09:32:33 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-04-10 09:32:33 (UTC) |
commit | 04fe8f3523c46511e846a42e4bb92d6b8d33758b (patch) (side-by-side diff) | |
tree | 78e810d665f02a234c936ecceb59b0d23217742d | |
parent | eda44f28d633f852caebd21a1e375f3e8e91a5cb (diff) | |
download | kdepimpi-04fe8f3523c46511e846a42e4bb92d6b8d33758b.zip kdepimpi-04fe8f3523c46511e846a42e4bb92d6b8d33758b.tar.gz kdepimpi-04fe8f3523c46511e846a42e4bb92d6b8d33758b.tar.bz2 |
nf
-rw-r--r-- | libkcal/todo.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/libkcal/todo.cpp b/libkcal/todo.cpp index 19a7ffd..90e7eb9 100644 --- a/libkcal/todo.cpp +++ b/libkcal/todo.cpp @@ -80,15 +80,16 @@ void Todo::setRunning( bool run ) void Todo::saveRunningInfoToFile() { - qDebug("Todo::saveRunningInfoToFile() %s", summary().latin1()); - + //qDebug("Todo::saveRunningInfoToFile() %s", summary().latin1()); + if ( mRunStart.secsTo ( QDateTime::currentDateTime() ) < 30 ) + return; QString dir = KGlobalSettings::timeTrackerDir(); - qDebug("%s ", dir.latin1()); + //qDebug("%s ", dir.latin1()); QString file = "%1%2%3-%4%5%6-"; file = file.arg( mRunStart.date().year(), 4).arg( mRunStart.date().month(),2 ).arg( mRunStart.date().day(), 2 ).arg( mRunStart.time().hour(),2 ).arg( mRunStart.time().minute(),2 ).arg( mRunStart.time().second(),2 ); file.replace ( QRegExp (" "), "0" ); file += uid(); - qDebug("File %s ",file.latin1() ); + //qDebug("File %s ",file.latin1() ); CalendarLocal cal; cal.setTimeZoneId( " 00:00 Europe/London(UTC)" ); Todo * to = (Todo*) clone(); |