summaryrefslogtreecommitdiff
path: root/epgsearchtools.h
diff options
context:
space:
mode:
authorChristian Wieninger <cwieninger (at) gmx (dot) de>2009-06-23 20:31:56 +0200
committerChristian Wieninger <cwieninger (at) gmx (dot) de>2009-06-23 20:31:56 +0200
commit236d130b574d7a2559c448d061c64d034e93a94e (patch)
treeb1c389148ed3dc2829a4f8a1463b596e91168571 /epgsearchtools.h
parent29fb44c898ff29e7f195e3744bd081c5db2548be (diff)
downloadvdr-plugin-epgsearch-236d130b574d7a2559c448d061c64d034e93a94e.tar.gz
vdr-plugin-epgsearch-236d130b574d7a2559c448d061c64d034e93a94e.tar.bz2
- made some destructors virtual
- when creating search timers directly from EPG their default 'use channel' is now the corresponding channel of the event instead of the current channel
Diffstat (limited to 'epgsearchtools.h')
-rw-r--r--epgsearchtools.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epgsearchtools.h b/epgsearchtools.h
index 426156c..d55d5e3 100644
--- a/epgsearchtools.h
+++ b/epgsearchtools.h
@@ -192,7 +192,7 @@ class cTimerObj : public cListObject {
public:
cTimer* timer;
cTimerObj(cTimer* Timer) : timer(Timer) {}
- ~cTimerObj() { timer = NULL; } // do not delete anything!
+ virtual ~cTimerObj() { timer = NULL; } // do not delete anything!
};
// --- cTimerObjList --------------------------------------------------------