diff options
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 3.1 2014/01/25 10:47:39 kls Exp $ + * $Id: status.c 4.1 2018/01/29 13:36:53 kls Exp $ */ #include "status.h" @@ -53,6 +53,12 @@ void cStatus::MsgReplaying(const cControl *Control, const char *Name, const char sm->Replaying(Control, Name, FileName, On); } +void cStatus::MsgMarksModified(const cMarks* Marks) +{ + for (cStatus *sm = statusMonitors.First(); sm; sm = statusMonitors.Next(sm)) + sm->MarksModified(Marks); +} + void cStatus::MsgSetVolume(int Volume, bool Absolute) { for (cStatus *sm = statusMonitors.First(); sm; sm = statusMonitors.Next(sm)) |