summaryrefslogtreecommitdiffstats
path: root/src/Client/XLSReader.h
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2009-09-27 19:58:24 +0200
committerMatthias Schiffer <matthias@gamezock.de>2009-09-27 19:58:24 +0200
commitb40ba0cf91603b695f1f2380cbd39966a458f22f (patch)
tree1fec48ddc59eb1392fac38495b230e4b2cbf7528 /src/Client/XLSReader.h
parente1d8490f0654a3da0b900407d80d91d8d0da68c8 (diff)
downloadmad-b40ba0cf91603b695f1f2380cbd39966a458f22f.tar
mad-b40ba0cf91603b695f1f2380cbd39966a458f22f.zip
Use Unicode-aware String class instead of std::string
Diffstat (limited to 'src/Client/XLSReader.h')
-rw-r--r--src/Client/XLSReader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Client/XLSReader.h b/src/Client/XLSReader.h
index 8c7b11a..b5364d9 100644
--- a/src/Client/XLSReader.h
+++ b/src/Client/XLSReader.h
@@ -41,7 +41,7 @@ class MAD_CLIENT_EXPORT XLSReader : private boost::noncopyable {
boost::shared_ptr<xmlDoc> doc;
std::list<boost::shared_ptr<XLSSheet> > sheets;
- static xmlNodePtr findNode(xmlNodePtr parent, const std::string &name);
+ static xmlNodePtr findNode(xmlNodePtr parent, const Core::String &name);
public:
XLSReader(const std::string &filename) throw (Core::Exception);