summaryrefslogtreecommitdiffabout
path: root/libkcal/todo.cpp
authorzautrix <zautrix>2005-04-10 09:27:53 (UTC)
committer zautrix <zautrix>2005-04-10 09:27:53 (UTC)
commiteda44f28d633f852caebd21a1e375f3e8e91a5cb (patch) (side-by-side diff)
treec7b380b9c742420c6d84b61700f05b72cd6b1d75 /libkcal/todo.cpp
parent79b12b680f6a0653bcff84c8ef83b23803246b7d (diff)
downloadkdepimpi-eda44f28d633f852caebd21a1e375f3e8e91a5cb.zip
kdepimpi-eda44f28d633f852caebd21a1e375f3e8e91a5cb.tar.gz
kdepimpi-eda44f28d633f852caebd21a1e375f3e8e91a5cb.tar.bz2
fixxx
Diffstat (limited to 'libkcal/todo.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libkcal/todo.cpp25
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
@@ -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<Alarm>& alarms = alarms();
for (Alarm* alarm = alarms.first(); alarm; alarm = alarms.next())
alarm->setAlarmStart(mDtDue);*/
-
updated();
}