diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-04-03 02:12:42 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-04-03 18:44:58 +0300 |
commit | 9e72886ee15acc39cbb6075ce32a60a5391ea9f3 (patch) | |
tree | fd7d0b05eeaed5ab0016cad58772cab7456f36b4 /src/gui/theme.cpp | |
parent | 49631972db5b965413d4bbe36983a8d5bd203183 (diff) | |
download | plus-9e72886ee15acc39cbb6075ce32a60a5391ea9f3.tar.gz plus-9e72886ee15acc39cbb6075ce32a60a5391ea9f3.tar.bz2 plus-9e72886ee15acc39cbb6075ce32a60a5391ea9f3.tar.xz plus-9e72886ee15acc39cbb6075ce32a60a5391ea9f3.zip |
Replace string::append with pathJoin.
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 b68fa011d..f369c95b3 100644 --- a/src/gui/theme.cpp +++ b/src/gui/theme.cpp @@ -644,13 +644,13 @@ std::string Theme::resolveThemePath(const std::string &path) } // Try the theme - file = getThemePath().append("/").append(file); + file = pathJoin(getThemePath(), file); if (VirtFs::exists(file)) - return getThemePath().append("/").append(path); + return pathJoin(getThemePath(), path); // Backup - return branding.getStringValue("guiPath").append(path); + return pathJoin(branding.getStringValue("guiPath"), path); } Image *Theme::getImageFromTheme(const std::string &path) |