summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-02-07 17:35:02 +0300
committerAndrei Karas <akaras@inbox.ru>2015-02-07 17:35:02 +0300
commit328eaa8ded37e86f2575cb2804d1aaa36cdd4a1b (patch)
tree76f605440589ba9a9da29e46f9f7a5a951016263 /src/utils
parent664131c51126d33e6e1fca7d9da09bc67016e450 (diff)
downloadplus-328eaa8ded37e86f2575cb2804d1aaa36cdd4a1b.tar.gz
plus-328eaa8ded37e86f2575cb2804d1aaa36cdd4a1b.tar.bz2
plus-328eaa8ded37e86f2575cb2804d1aaa36cdd4a1b.tar.xz
plus-328eaa8ded37e86f2575cb2804d1aaa36cdd4a1b.zip
Remove optional parameter from xml document constructor.
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/xml.h2
-rw-r--r--src/utils/xmlutils.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/xml.h b/src/utils/xml.h
index c8c15a719..dd06f8df1 100644
--- a/src/utils/xml.h
+++ b/src/utils/xml.h
@@ -66,7 +66,7 @@ namespace XML
* resource manager. Logs errors.
*/
explicit Document(const std::string &filename,
- const bool useResman = true);
+ const bool useResman);
/**
* Constructor that attempts to load an XML document from memory.
diff --git a/src/utils/xmlutils.cpp b/src/utils/xmlutils.cpp
index 64ae45209..2e4a7d736 100644
--- a/src/utils/xmlutils.cpp
+++ b/src/utils/xmlutils.cpp
@@ -34,7 +34,7 @@ void readXmlIntVector(const std::string &fileName,
std::vector<int> &arr)
{
arr.clear();
- XML::Document doc(fileName);
+ XML::Document doc(fileName, true);
const XmlNodePtrConst rootNode = doc.rootNode();
if (!rootNode || !xmlNameEqual(rootNode, rootName.c_str()))