From d5a00a320043f5782ebc489285c89943b667e094 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 12 May 2016 00:18:57 +0300 Subject: Add skipError parameter to loadXml functions. This allow not show errors for some not main xml files. --- src/resources/db/homunculusdb.cpp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'src/resources/db/homunculusdb.cpp') diff --git a/src/resources/db/homunculusdb.cpp b/src/resources/db/homunculusdb.cpp index e8d2f723e..c8c7d6d2c 100644 --- a/src/resources/db/homunculusdb.cpp +++ b/src/resources/db/homunculusdb.cpp @@ -45,16 +45,17 @@ void HomunculusDB::load() unload(); logger->log1("Initializing homunculus database..."); - loadXmlFile(paths.getStringValue("homunculusesFile")); - loadXmlFile(paths.getStringValue("homunculusesPatchFile")); + loadXmlFile(paths.getStringValue("homunculusesFile"), SkipError_false); + loadXmlFile(paths.getStringValue("homunculusesPatchFile"), SkipError_true); loadXmlDir("homunculusesPatchDir", loadXmlFile); mLoaded = true; } -void HomunculusDB::loadXmlFile(const std::string &fileName) +void HomunculusDB::loadXmlFile(const std::string &fileName, + const SkipError skipError) { - XML::Document doc(fileName, UseResman_true, SkipError_false); + XML::Document doc(fileName, UseResman_true, skipError); const XmlNodePtr rootNode = doc.rootNode(); if (!rootNode || !xmlNameEqual(rootNode, "homunculuses")) @@ -75,7 +76,7 @@ void HomunculusDB::loadXmlFile(const std::string &fileName) const std::string name = XML::getProperty( homunculusNode, "name", ""); if (!name.empty()) - loadXmlFile(name); + loadXmlFile(name, skipError); continue; } if (!xmlNameEqual(homunculusNode, "homunculus")) -- cgit v1.2.3-60-g2f50