summaryrefslogtreecommitdiff
path: root/src/resources/db/sounddb.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-05-06 23:27:42 +0300
committerAndrei Karas <akaras@inbox.ru>2015-05-06 23:27:42 +0300
commit2bca0787182eb1637cd82fc246bc19578e90ca09 (patch)
tree046bc50c0cf38c3f7ad86798556a723e62df5a68 /src/resources/db/sounddb.cpp
parent6c9ef6af1b72b74b9ab94cc1c1349c3cd70c8be6 (diff)
downloadplus-2bca0787182eb1637cd82fc246bc19578e90ca09.tar.gz
plus-2bca0787182eb1637cd82fc246bc19578e90ca09.tar.bz2
plus-2bca0787182eb1637cd82fc246bc19578e90ca09.tar.xz
plus-2bca0787182eb1637cd82fc246bc19578e90ca09.zip
Add strong typed bool type SkipError.
Diffstat (limited to 'src/resources/db/sounddb.cpp')
-rw-r--r--src/resources/db/sounddb.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/resources/db/sounddb.cpp b/src/resources/db/sounddb.cpp
index 8e1d22bc0..09b7af65d 100644
--- a/src/resources/db/sounddb.cpp
+++ b/src/resources/db/sounddb.cpp
@@ -44,7 +44,9 @@ void SoundDB::load()
void SoundDB::loadXmlFile(const std::string &fileName)
{
- XML::Document *doc = new XML::Document(fileName, UseResman_true, false);
+ XML::Document *doc = new XML::Document(fileName,
+ UseResman_true,
+ SkipError_false);
const XmlNodePtrConst root = doc->rootNode();
if (!root || !xmlNameEqual(root, "sounds"))