summaryrefslogtreecommitdiff
path: root/status.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2008-02-16 15:04:49 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2008-02-16 15:04:49 +0100
commit6140c49f146455f01897097e0393225382ec1885 (patch)
treed6a3312bfbc62bfa50a9729d19fa06188ed69931 /status.c
parent6b35173789c2d97fc6b9dadb780a22316f82c7fb (diff)
downloadvdr-6140c49f146455f01897097e0393225382ec1885.tar.gz
vdr-6140c49f146455f01897097e0393225382ec1885.tar.bz2
Added cStatus::TimerChange()
Diffstat (limited to 'status.c')
-rw-r--r--status.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/status.c b/status.c
index 42334fa9..1d7a8d42 100644
--- a/status.c
+++ b/status.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: status.c 1.9 2008/02/16 13:50:15 kls Exp $
+ * $Id: status.c 1.10 2008/02/16 14:46:31 kls Exp $
*/
#include "status.h"
@@ -23,6 +23,12 @@ cStatus::~cStatus()
statusMonitors.Del(this, false);
}
+void cStatus::MsgTimerChange(const cTimer *Timer, eTimerChange Change)
+{
+ for (cStatus *sm = statusMonitors.First(); sm; sm = statusMonitors.Next(sm))
+ sm->TimerChange(Timer, Change);
+}
+
void cStatus::MsgChannelSwitch(const cDevice *Device, int ChannelNumber)
{
for (cStatus *sm = statusMonitors.First(); sm; sm = statusMonitors.Next(sm))