summaryrefslogtreecommitdiff
path: root/libcore/imageloader.h
diff options
context:
space:
mode:
authorManuel Reimer <manuel.reimer@gmx.de>2014-10-28 16:54:37 +0100
committerManuel Reimer <manuel.reimer@gmx.de>2014-10-28 16:54:37 +0100
commit943c899288181988013dca3558a2382937f36f3f (patch)
tree25abeed380461567b36ab7841b3835245f82f4ac /libcore/imageloader.h
parentabd8fd8db042ae860bb5346ce886ee961a847ae6 (diff)
downloadvdr-plugin-skindesigner-943c899288181988013dca3558a2382937f36f3f.tar.gz
vdr-plugin-skindesigner-943c899288181988013dca3558a2382937f36f3f.tar.bz2
First cleanup of image loading code
Diffstat (limited to 'libcore/imageloader.h')
-rw-r--r--libcore/imageloader.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcore/imageloader.h b/libcore/imageloader.h
index 2a148be..b2966c9 100644
--- a/libcore/imageloader.h
+++ b/libcore/imageloader.h
@@ -14,8 +14,8 @@ class cImageLoader : public cImageMagickWrapper {
public:
cImageLoader();
~cImageLoader();
- cImage GetImage();
- bool LoadImage(const char *path, int width, int height);
+ cImage *GetImage(int width, int height);
+ bool LoadImage(const char *path);
void DeterminateChannelLogoSize(int &width, int &height);
private:
};