diff options
Diffstat (limited to 'epgsearchtools.h')
-rw-r--r-- | epgsearchtools.h | 2 |
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 -------------------------------------------------------- |