summaryrefslogtreecommitdiff
path: root/src/xmlparser.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/xmlparser.cc')
-rw-r--r--src/xmlparser.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/xmlparser.cc b/src/xmlparser.cc
index 112ea00..a362f95 100644
--- a/src/xmlparser.cc
+++ b/src/xmlparser.cc
@@ -31,8 +31,6 @@
#include "xml_encode_decode.h"
-#define NOID 0xffffffff
-
XmlParser::XmlParser(TaskTree *t) : tree(t)
{
}
@@ -48,6 +46,10 @@ void XmlParser::characterData(const std::string &data)
void XmlParser::startTag(std::string name, attributes_t &attr)
{
+ if(name == "tasktree") {
+ tree->nextid = atoi(xml_decode(attr["nextid"]).c_str());
+ }
+
if(name == "task") {
taskid_t id = atoi(xml_decode(attr["id"]).c_str());
@@ -74,7 +76,7 @@ void XmlParser::endTag(std::string name)
parents.pop();
}
- if (name == "title") {
+ if(name == "title") {
node->data.title = cdata;
}
}