summaryrefslogtreecommitdiff
path: root/server/src/saxparser.cc
diff options
context:
space:
mode:
authorLars Bisballe Jensen <larsbisballe@gmail.com>2011-10-14 10:42:27 +0200
committerLars Bisballe Jensen <larsbisballe@gmail.com>2011-10-14 10:42:27 +0200
commit2e574b6dfcb824239079a485527d420497b27b01 (patch)
treef49be56d98f0e952461b856d41eb54218b5f135b /server/src/saxparser.cc
parent2d5f72a787426b59658d1b66cfe0ea602ea66b61 (diff)
parentd602bdeb65d0e4007a8a02e5c6d4b9b271287aa9 (diff)
Merge branch 'master' of http://git.aasimon.org/public/pracro
Diffstat (limited to 'server/src/saxparser.cc')
-rw-r--r--server/src/saxparser.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/saxparser.cc b/server/src/saxparser.cc
index 597b853..95efffe 100644
--- a/server/src/saxparser.cc
+++ b/server/src/saxparser.cc
@@ -259,7 +259,7 @@ public:
return read(fd, data, size);
}
- void startTag(std::string name, std::map< std::string, std::string> attributes)
+ void startTag(std::string name, attributes_t &attributes)
{
//printf("<%s>\n", name.c_str());
}
@@ -275,7 +275,7 @@ private:
class MyBufferParser :public SAXParser {
public:
- void startTag(std::string name, std::map< std::string, std::string> attributes)
+ void startTag(std::string name, attributes_t &attributes)
{
//printf("<%s>\n", name.c_str());
}