diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-05-25 20:48:35 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-05-25 20:48:35 +0300 |
commit | 5994a6198ac35ea149a7211213dc296ee7406f44 (patch) | |
tree | eec718594fd23da29f9d39e4c0fb00409d514a8e /src/gui/widgets/browserbox.cpp | |
parent | 1b1a7cea1c6b81438bacc86b93cb80a78430790f (diff) | |
download | ManaVerse-5994a6198ac35ea149a7211213dc296ee7406f44.tar.gz ManaVerse-5994a6198ac35ea149a7211213dc296ee7406f44.tar.bz2 ManaVerse-5994a6198ac35ea149a7211213dc296ee7406f44.tar.xz ManaVerse-5994a6198ac35ea149a7211213dc296ee7406f44.zip |
Move imageset load function from resourcemanager into separate file.
Diffstat (limited to 'src/gui/widgets/browserbox.cpp')
-rw-r--r-- | src/gui/widgets/browserbox.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/browserbox.cpp b/src/gui/widgets/browserbox.cpp index ba0698b5f..97ad5ce85 100644 --- a/src/gui/widgets/browserbox.cpp +++ b/src/gui/widgets/browserbox.cpp @@ -47,7 +47,7 @@ #include "resources/loaders/imageloader.h" -#include "resources/resourcemanager/resourcemanager.h" +#include "resources/loaders/imagesetloader.h" #include "utils/stringutils.h" #include "utils/timer.h" @@ -129,7 +129,7 @@ BrowserBox::BrowserBox(const Widget2 *const widget, mSkin = theme->load(skin, "browserbox.xml"); if (mInstances == 0) { - mEmotes = resourceManager->getImageSet( + mEmotes = Loader::getImageSet( "graphics/sprites/chatemotes.png", 17, 18); } mInstances ++; |