-rw-r--r-- | libkcal/todo.cpp | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/libkcal/todo.cpp b/libkcal/todo.cpp index 7906046..19a7ffd 100644 --- a/libkcal/todo.cpp +++ b/libkcal/todo.cpp @@ -56,9 +56,9 @@ Todo::Todo(const Todo &t) : Incidence(t) Todo::~Todo() { setRunning( false ); - qDebug("Todo::~Todo() "); + //qDebug("Todo::~Todo() "); } void Todo::setRunning( bool run ) { @@ -83,23 +83,25 @@ void Todo::saveRunningInfoToFile() qDebug("Todo::saveRunningInfoToFile() %s", summary().latin1()); 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 ); } @@ -238,9 +240,8 @@ void Todo::setDtDue(const QDateTime &dtDue) /*const QPtrList<Alarm>& alarms = alarms(); for (Alarm* alarm = alarms.first(); alarm; alarm = alarms.next()) alarm->setAlarmStart(mDtDue);*/ - updated(); } QDateTime Todo::dtDue() const |