diff options
Diffstat (limited to 'plugins/Popup/src/bitmap_funcs.h')
-rw-r--r-- | plugins/Popup/src/bitmap_funcs.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/Popup/src/bitmap_funcs.h b/plugins/Popup/src/bitmap_funcs.h index 6840e8f89e..64150200ee 100644 --- a/plugins/Popup/src/bitmap_funcs.h +++ b/plugins/Popup/src/bitmap_funcs.h @@ -45,18 +45,16 @@ private: bool loadFromFile_pixel(const TCHAR *fn);
bool loadFromFile_gradient(const TCHAR *fn);
- bool loadFromFile_png(const TCHAR *fn);
- bool loadFromFile_default(const TCHAR *fn, const TCHAR *fnAlpha = 0);
void premultipleChannels();
public:
MyBitmap();
MyBitmap(int w, int h);
- MyBitmap(const TCHAR *fn, const TCHAR *fnAlpha = 0);
+ MyBitmap(const TCHAR *fn);
~MyBitmap();
void allocate(int w, int h);
- bool loadFromFile(const TCHAR *fn, const TCHAR *fnAlpha = 0);
+ bool loadFromFile(const TCHAR *fn);
int getWidth() { return width; }
int getHeight() { return height; }
|