diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-02-28 02:06:49 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-02-28 02:06:49 +0300 |
commit | fac5f4d0cf2181f88629b6a21c7d433217da90ca (patch) | |
tree | d2f50084e11d501f78fee4a268a6a288b8bd3236 /src/gui/theme.cpp | |
parent | 3fba07dba53ae41d915ba4c3304e31f0b44893fa (diff) | |
download | plus-fac5f4d0cf2181f88629b6a21c7d433217da90ca.tar.gz plus-fac5f4d0cf2181f88629b6a21c7d433217da90ca.tar.bz2 plus-fac5f4d0cf2181f88629b6a21c7d433217da90ca.tar.xz plus-fac5f4d0cf2181f88629b6a21c7d433217da90ca.zip |
Rename UseResMan into UseVirtFs.
Diffstat (limited to 'src/gui/theme.cpp')
-rw-r--r-- | src/gui/theme.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/theme.cpp b/src/gui/theme.cpp index 206d8f9a5..5be8efbf9 100644 --- a/src/gui/theme.cpp +++ b/src/gui/theme.cpp @@ -402,7 +402,7 @@ Skin *Theme::readSkin(const std::string &filename, const bool full) if (!VirtFs::exists(path)) return nullptr; XML::Document *const doc = Loader::getXml(path, - UseResman_true, + UseVirtFs_true, SkipError_true); if (!doc) return nullptr; @@ -1007,7 +1007,7 @@ void Theme::loadColors(std::string file) file.append("/colors.xml"); XML::Document *const doc = Loader::getXml(resolveThemePath(file), - UseResman_true, + UseVirtFs_true, SkipError_false); if (!doc) return; @@ -1216,7 +1216,7 @@ ThemeInfo *Theme::loadInfo(const std::string &themeName) } logger->log("loading: " + path); XML::Document *const doc = Loader::getXml(path, - UseResman_true, + UseVirtFs_true, SkipError_false); if (!doc) return nullptr; |