author | zecke <zecke> | 2002-04-18 21:00:46 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-04-18 21:00:46 (UTC) |
commit | 7715e61aa7874b592bac6158a400d11278a42092 (patch) (side-by-side diff) | |
tree | e4660384ccb2738d38288deac43b9b625ba41fe2 | |
parent | 877e3d4899013687a0a16caefadabf86703bcf27 (diff) | |
download | opie-7715e61aa7874b592bac6158a400d11278a42092.zip opie-7715e61aa7874b592bac6158a400d11278a42092.tar.gz opie-7715e61aa7874b592bac6158a400d11278a42092.tar.bz2 |
handle the importing( first reading ) of
Zaurus format correclty
TodoList and Today should be fine now
-rw-r--r-- | libopie/tododb.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libopie/tododb.cpp b/libopie/tododb.cpp index 4d6711d..c486723 100644 --- a/libopie/tododb.cpp +++ b/libopie/tododb.cpp @@ -64,6 +64,10 @@ public: XMLElement *element = root->firstChild(); element = element->firstChild(); while( element ){ + if( element->tagName() != QString::fromLatin1("Task") ){ + element = element->nextChild(); + continue; + } qWarning("ToDoDB::load element tagName() : %s", element->tagName().latin1() ); QString dummy; ToDoEvent event; |