summaryrefslogtreecommitdiff
path: root/src/effectmanager.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-05-12 00:18:57 +0300
committerAndrei Karas <akaras@inbox.ru>2016-05-12 00:51:22 +0300
commitd5a00a320043f5782ebc489285c89943b667e094 (patch)
treeeb64f3b1f81f7ba2a3c7ff9e02ad329ef21abb83 /src/effectmanager.cpp
parent742b2a22bdcb69e6f615a284065ba2696e7bc261 (diff)
downloadplus-d5a00a320043f5782ebc489285c89943b667e094.tar.gz
plus-d5a00a320043f5782ebc489285c89943b667e094.tar.bz2
plus-d5a00a320043f5782ebc489285c89943b667e094.tar.xz
plus-d5a00a320043f5782ebc489285c89943b667e094.zip
Add skipError parameter to loadXml functions.
This allow not show errors for some not main xml files.
Diffstat (limited to 'src/effectmanager.cpp')
-rw-r--r--src/effectmanager.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/effectmanager.cpp b/src/effectmanager.cpp
index 1a9901beb..e91e52eff 100644
--- a/src/effectmanager.cpp
+++ b/src/effectmanager.cpp
@@ -41,14 +41,15 @@ EffectManager::EffectManager() :
mTimers()
{
logger->log1("Effects are now loading");
- loadXmlFile(paths.getStringValue("effectsFile"));
- loadXmlFile(paths.getStringValue("effectsPatchFile"));
+ loadXmlFile(paths.getStringValue("effectsFile"), SkipError_false);
+ loadXmlFile(paths.getStringValue("effectsPatchFile"), SkipError_true);
loadXmlDir("effectsPatchDir", loadXmlFile);
}
-void EffectManager::loadXmlFile(const std::string &fileName)
+void EffectManager::loadXmlFile(const std::string &fileName,
+ const SkipError skipError)
{
- XML::Document doc(fileName, UseResman_true, SkipError_false);
+ XML::Document doc(fileName, UseResman_true, skipError);
const XmlNodePtrConst root = doc.rootNode();
if (!root ||
@@ -64,7 +65,7 @@ void EffectManager::loadXmlFile(const std::string &fileName)
{
const std::string name = XML::getProperty(node, "name", "");
if (!name.empty())
- loadXmlFile(name);
+ loadXmlFile(name, skipError);
continue;
}
else if (xmlNameEqual(node, "effect"))