-rw-r--r-- | libkcal/todo.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libkcal/todo.cpp b/libkcal/todo.cpp index 5e6ac22..6a6c137 100644 --- a/libkcal/todo.cpp +++ b/libkcal/todo.cpp | |||
@@ -126,24 +126,25 @@ void Todo::saveParents() | |||
126 | saveTodo = true; | 126 | saveTodo = true; |
127 | } else { | 127 | } else { |
128 | saveTodo = true; | 128 | saveTodo = true; |
129 | } | 129 | } |
130 | if ( saveTodo ) { | 130 | if ( saveTodo ) { |
131 | CalendarLocal cal; | 131 | CalendarLocal cal; |
132 | cal.setTimeZoneId( " 00:00 Europe/London(UTC)" ); | 132 | cal.setTimeZoneId( " 00:00 Europe/London(UTC)" ); |
133 | Todo * par = (Todo *) to->clone(); | 133 | Todo * par = (Todo *) to->clone(); |
134 | cal.addIncidence( par ); | 134 | cal.addIncidence( par ); |
135 | ICalFormat format; | 135 | ICalFormat format; |
136 | format.save( &cal, file ); | 136 | format.save( &cal, file ); |
137 | } | 137 | } |
138 | to->saveParents(); | ||
138 | } | 139 | } |
139 | 140 | ||
140 | int Todo::runTime() | 141 | int Todo::runTime() |
141 | { | 142 | { |
142 | if ( !mRunning ) | 143 | if ( !mRunning ) |
143 | return 0; | 144 | return 0; |
144 | return mRunStart.secsTo( QDateTime::currentDateTime() ); | 145 | return mRunStart.secsTo( QDateTime::currentDateTime() ); |
145 | } | 146 | } |
146 | bool Todo::hasRunningSub() | 147 | bool Todo::hasRunningSub() |
147 | { | 148 | { |
148 | if ( mRunning ) | 149 | if ( mRunning ) |
149 | return true; | 150 | return true; |