summaryrefslogtreecommitdiff
path: root/styledpixmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'styledpixmap.c')
-rw-r--r--styledpixmap.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/styledpixmap.c b/styledpixmap.c
index 1669501..041cf88 100644
--- a/styledpixmap.c
+++ b/styledpixmap.c
@@ -2,17 +2,15 @@
cStyledPixmap::cStyledPixmap(void) {
pixmap = NULL;
- caller = NULL;
}
-cStyledPixmap::cStyledPixmap(cPixmap *pixmap, cString caller) {
+cStyledPixmap::cStyledPixmap(cPixmap *pixmap) {
this->pixmap = pixmap;
- this->caller = caller;
}
cStyledPixmap::~cStyledPixmap(void) {
if (pixmap)
- osdManager.releasePixmap(pixmap, *caller);
+ osdManager.releasePixmap(pixmap);
}
void cStyledPixmap::setPixmap(cPixmap *pixmap) {