summaryrefslogtreecommitdiff
path: root/src/utils/xmlutils.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-02-07 17:51:56 +0300
committerAndrei Karas <akaras@inbox.ru>2015-02-07 17:51:56 +0300
commitbd2b67c0d1511a0068dfa3caf90a784fdf6fd3f2 (patch)
tree34749cc1679dc9a4d81652e77ed8aaf775f89882 /src/utils/xmlutils.cpp
parent328eaa8ded37e86f2575cb2804d1aaa36cdd4a1b (diff)
downloadmv-bd2b67c0d1511a0068dfa3caf90a784fdf6fd3f2.tar.gz
mv-bd2b67c0d1511a0068dfa3caf90a784fdf6fd3f2.tar.bz2
mv-bd2b67c0d1511a0068dfa3caf90a784fdf6fd3f2.tar.xz
mv-bd2b67c0d1511a0068dfa3caf90a784fdf6fd3f2.zip
Dont show some useless errors while loading themes.
Diffstat (limited to 'src/utils/xmlutils.cpp')
-rw-r--r--src/utils/xmlutils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/xmlutils.cpp b/src/utils/xmlutils.cpp
index 2e4a7d736..7c370dda0 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, true);
+ XML::Document doc(fileName, true, false);
const XmlNodePtrConst rootNode = doc.rootNode();
if (!rootNode || !xmlNameEqual(rootNode, rootName.c_str()))