summaryrefslogtreecommitdiff
path: root/src/gui/theme.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-02-07 17:35:02 +0300
committerAndrei Karas <akaras@inbox.ru>2015-02-07 17:35:02 +0300
commit328eaa8ded37e86f2575cb2804d1aaa36cdd4a1b (patch)
tree76f605440589ba9a9da29e46f9f7a5a951016263 /src/gui/theme.cpp
parent664131c51126d33e6e1fca7d9da09bc67016e450 (diff)
downloadplus-328eaa8ded37e86f2575cb2804d1aaa36cdd4a1b.tar.gz
plus-328eaa8ded37e86f2575cb2804d1aaa36cdd4a1b.tar.bz2
plus-328eaa8ded37e86f2575cb2804d1aaa36cdd4a1b.tar.xz
plus-328eaa8ded37e86f2575cb2804d1aaa36cdd4a1b.zip
Remove optional parameter from xml document constructor.
Diffstat (limited to 'src/gui/theme.cpp')
-rw-r--r--src/gui/theme.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/theme.cpp b/src/gui/theme.cpp
index 9898aebfc..98db5dc4c 100644
--- a/src/gui/theme.cpp
+++ b/src/gui/theme.cpp
@@ -373,7 +373,7 @@ Skin *Theme::readSkin(const std::string &filename, const bool full)
// logger->log("Loading skin '%s'.", filename.c_str());
- XML::Document doc(resolveThemePath(filename));
+ XML::Document doc(resolveThemePath(filename), true);
const XmlNodePtr rootNode = doc.rootNode();
if (!rootNode || !xmlNameEqual(rootNode, "skinset"))
@@ -967,7 +967,7 @@ void Theme::loadColors(std::string file)
else
file.append("/colors.xml");
- XML::Document doc(resolveThemePath(file));
+ XML::Document doc(resolveThemePath(file), true);
const XmlNodePtrConst root = doc.rootNode();
if (!root || !xmlNameEqual(root, "colors"))
@@ -1156,7 +1156,7 @@ ThemeInfo *Theme::loadInfo(const std::string &themeName)
themeName).append("/info.xml");
}
logger->log("loading: " + path);
- XML::Document doc(path);
+ XML::Document doc(path, true);
const XmlNodePtrConst rootNode = doc.rootNode();
if (!rootNode || !xmlNameEqual(rootNode, "info"))