summaryrefslogtreecommitdiff
path: root/timers.c
diff options
context:
space:
mode:
Diffstat (limited to 'timers.c')
-rw-r--r--timers.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/timers.c b/timers.c
index 7c3c197..409da48 100644
--- a/timers.c
+++ b/timers.c
@@ -4,18 +4,16 @@
#include "helpers.h"
#include <vdr/recording.h>
-cNopacityTimer::cNopacityTimer(cOsd *osd, cImageCache *imgCache, const cTimer *timer, const cFont *font, const cFont *fontLarge) {
+cNopacityTimer::cNopacityTimer(cOsd *osd, const cTimer *timer, const cFont *font, const cFont *fontLarge) {
this->osd = osd;
- this->imgCache = imgCache;
this->timer = timer;
this->font = font;
this->fontLarge = fontLarge;
isTimerConflict = false;
}
-cNopacityTimer::cNopacityTimer(cOsd *osd, cImageCache *imgCache, int numConflicts, const cFont *font, const cFont *fontLarge) {
+cNopacityTimer::cNopacityTimer(cOsd *osd, int numConflicts, const cFont *font, const cFont *fontLarge) {
this->osd = osd;
- this->imgCache = imgCache;
this->numConflicts = numConflicts;
this->font = font;
this->fontLarge = fontLarge;
@@ -215,4 +213,4 @@ int cNopacityTimer::DrawLogo(void) {
}
}
return totalHeight;
-} \ No newline at end of file
+}