author | zecke <zecke> | 2003-05-07 16:03:03 (UTC) |
---|---|---|
committer | zecke <zecke> | 2003-05-07 16:03:03 (UTC) |
commit | 7c8110d568ac60517916114ac5fc4e850156d4e5 (patch) (unidiff) | |
tree | cb4ffab444f078f013de7edd3d180e2e80b23ffa /libopie2/opiepim | |
parent | accd04a63230ac46978f77deae1b0d1419618730 (diff) | |
download | opie-7c8110d568ac60517916114ac5fc4e850156d4e5.zip opie-7c8110d568ac60517916114ac5fc4e850156d4e5.tar.gz opie-7c8110d568ac60517916114ac5fc4e850156d4e5.tar.bz2 |
Save recurrence
-rw-r--r-- | libopie2/opiepim/backend/otodoaccessxml.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libopie2/opiepim/backend/otodoaccessxml.cpp b/libopie2/opiepim/backend/otodoaccessxml.cpp index 55f268b..c0d8dfc 100644 --- a/libopie2/opiepim/backend/otodoaccessxml.cpp +++ b/libopie2/opiepim/backend/otodoaccessxml.cpp | |||
@@ -15,6 +15,7 @@ | |||
15 | #include <qpe/stringutil.h> | 15 | #include <qpe/stringutil.h> |
16 | #include <qpe/timeconversion.h> | 16 | #include <qpe/timeconversion.h> |
17 | 17 | ||
18 | #include "orecur.h" | ||
18 | #include "otodoaccessxml.h" | 19 | #include "otodoaccessxml.h" |
19 | 20 | ||
20 | namespace { | 21 | namespace { |
@@ -434,7 +435,8 @@ QString OTodoAccessXML::toString( const OTodo& ev )const { | |||
434 | str += extIt.key() + "=\"" + extIt.data() + "\" "; | 435 | str += extIt.key() + "=\"" + extIt.data() + "\" "; |
435 | */ | 436 | */ |
436 | // cross refernce | 437 | // cross refernce |
437 | 438 | if ( ev.hasRecurrence() ) | |
439 | str += ev.recurrence().toString(); | ||
438 | 440 | ||
439 | return str; | 441 | return str; |
440 | } | 442 | } |