summaryrefslogtreecommitdiff
path: root/src/resources/db/sounddb.cpp
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/resources/db/sounddb.cpp
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/resources/db/sounddb.cpp')
-rw-r--r--src/resources/db/sounddb.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resources/db/sounddb.cpp b/src/resources/db/sounddb.cpp
index 69c3acad1..c6e5bcb8a 100644
--- a/src/resources/db/sounddb.cpp
+++ b/src/resources/db/sounddb.cpp
@@ -44,7 +44,7 @@ void SoundDB::load()
void SoundDB::loadXmlFile(const std::string &fileName)
{
- XML::Document *doc = new XML::Document(fileName);
+ XML::Document *doc = new XML::Document(fileName, true);
const XmlNodePtrConst root = doc->rootNode();
if (!root || !xmlNameEqual(root, "sounds"))