diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2008-02-16 15:04:49 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2008-02-16 15:04:49 +0100 |
commit | 6140c49f146455f01897097e0393225382ec1885 (patch) | |
tree | d6a3312bfbc62bfa50a9729d19fa06188ed69931 /status.c | |
parent | 6b35173789c2d97fc6b9dadb780a22316f82c7fb (diff) | |
download | vdr-6140c49f146455f01897097e0393225382ec1885.tar.gz vdr-6140c49f146455f01897097e0393225382ec1885.tar.bz2 |
Added cStatus::TimerChange()
Diffstat (limited to 'status.c')
-rw-r--r-- | status.c | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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)) |