From eda44f28d633f852caebd21a1e375f3e8e91a5cb Mon Sep 17 00:00:00 2001 From: zautrix Date: Sun, 10 Apr 2005 09:27:53 +0000 Subject: fixxx --- (limited to 'libkcal/todo.cpp') diff --git a/libkcal/todo.cpp b/libkcal/todo.cpp index 7906046..19a7ffd 100644 --- a/libkcal/todo.cpp +++ b/libkcal/todo.cpp @@ -57,7 +57,7 @@ Todo::Todo(const Todo &t) : Incidence(t) Todo::~Todo() { setRunning( false ); - qDebug("Todo::~Todo() "); + //qDebug("Todo::~Todo() "); } void Todo::setRunning( bool run ) @@ -84,21 +84,23 @@ void Todo::saveRunningInfoToFile() QString dir = KGlobalSettings::timeTrackerDir(); qDebug("%s ", dir.latin1()); - QString file = "%1%2%3-%4%5%6-%7%8%9-"; - int runtime = mRunStart.secsTo( QDateTime::currentDateTime() ); - runtime = (runtime / 60) +1; - int h = runtime / 60; - int m = runtime % 60; - int d = h / 24; - h = h % 24; - 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 ).arg( d,3 ).arg( h,2 ).arg( m,2 ); + 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 = dir +"/" +file + uid()+".ics"; + file += uid(); qDebug("File %s ",file.latin1() ); CalendarLocal cal; cal.setTimeZoneId( " 00:00 Europe/London(UTC)" ); - cal.addIncidence( clone() ); + Todo * to = (Todo*) clone(); + to->setFloats( false ); + to->setDtStart( mRunStart ); + to->setHasStartDate( true ); + to->setDtDue( QDateTime::currentDateTime() ); + to->setHasDueDate( true ); + to->setUid( file ); + cal.addIncidence( to ); ICalFormat format; + file = dir +"/" +file +".ics"; format.save( &cal, file ); } @@ -239,7 +241,6 @@ void Todo::setDtDue(const QDateTime &dtDue) /*const QPtrList& alarms = alarms(); for (Alarm* alarm = alarms.first(); alarm; alarm = alarms.next()) alarm->setAlarmStart(mDtDue);*/ - updated(); } -- cgit v0.9.0.2