Implemented cStatus::MarksModified()

This commit is contained in:
Klaus Schmidinger
2018-01-29 14:09:59 +01:00
parent 0055eeeeb8
commit 5ae8d1a7a3
5 changed files with 30 additions and 5 deletions

View File

@@ -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))