summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
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()))