summaryrefslogtreecommitdiff
path: root/src/utils/xml.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/utils/xml.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/utils/xml.cpp')
-rw-r--r--src/utils/xml.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/xml.cpp b/src/utils/xml.cpp
index 487c177bb..f2cbdb384 100644
--- a/src/utils/xml.cpp
+++ b/src/utils/xml.cpp
@@ -77,7 +77,7 @@ namespace XML
{
Document::Document(const std::string &filename,
const UseResman useResman,
- const bool skipError) :
+ const SkipError skipError) :
mDoc(nullptr),
mIsValid(false)
{
@@ -125,7 +125,7 @@ namespace XML
if (!mDoc)
logger->log("Error parsing XML file %s", filename.c_str());
}
- else if (!skipError)
+ else if (skipError == SkipError_false)
{
logger->log("Error loading %s", filename.c_str());
}