summaryrefslogtreecommitdiff
path: root/src/gui/theme.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-05-25 14:13:51 +0300
committerAndrei Karas <akaras@inbox.ru>2016-05-25 14:13:51 +0300
commite2f03241a1ba9d6b536b0b7a6f995e4e8d894408 (patch)
tree2bfd5cda7899a5793de62b5f47925a09eac320f5 /src/gui/theme.cpp
parent59271755dc75f5de6c288308df92f687deaa32b4 (diff)
downloadplus-e2f03241a1ba9d6b536b0b7a6f995e4e8d894408.tar.gz
plus-e2f03241a1ba9d6b536b0b7a6f995e4e8d894408.tar.bz2
plus-e2f03241a1ba9d6b536b0b7a6f995e4e8d894408.tar.xz
plus-e2f03241a1ba9d6b536b0b7a6f995e4e8d894408.zip
Move images load function from resourcemanager into separate file.
Diffstat (limited to 'src/gui/theme.cpp')
-rw-r--r--src/gui/theme.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gui/theme.cpp b/src/gui/theme.cpp
index c8468a26d..58840f9a8 100644
--- a/src/gui/theme.cpp
+++ b/src/gui/theme.cpp
@@ -37,6 +37,8 @@
#include "resources/dye/dyepalette.h"
+#include "resources/loaders/imageloader.h"
+
#include "resources/resourcemanager/resourcemanager.h"
#include "utils/dtor.h"
@@ -639,7 +641,7 @@ std::string Theme::resolveThemePath(const std::string &path)
Image *Theme::getImageFromTheme(const std::string &path)
{
- return resourceManager->getImage(resolveThemePath(path));
+ return ImageLoader::getImage(resolveThemePath(path));
}
ImageSet *Theme::getImageSetFromTheme(const std::string &path,