diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-05-06 23:27:42 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-05-06 23:27:42 +0300 |
commit | 2bca0787182eb1637cd82fc246bc19578e90ca09 (patch) | |
tree | 046bc50c0cf38c3f7ad86798556a723e62df5a68 /src/utils/xml.cpp | |
parent | 6c9ef6af1b72b74b9ab94cc1c1349c3cd70c8be6 (diff) | |
download | mv-2bca0787182eb1637cd82fc246bc19578e90ca09.tar.gz mv-2bca0787182eb1637cd82fc246bc19578e90ca09.tar.bz2 mv-2bca0787182eb1637cd82fc246bc19578e90ca09.tar.xz mv-2bca0787182eb1637cd82fc246bc19578e90ca09.zip |
Add strong typed bool type SkipError.
Diffstat (limited to 'src/utils/xml.cpp')
-rw-r--r-- | src/utils/xml.cpp | 4 |
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()); } |