diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-07-13 11:16:27 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-07-13 11:16:27 +0200 |
commit | f2b637ed852c81301ea1f64692447733745ffa06 (patch) | |
tree | 5fbc94d79a14433b8197a9e16d7795fe65fdbc50 /status.c | |
parent | d5208be84b6d604051f04b024ad65c004006fc50 (diff) | |
download | vdr-f2b637ed852c81301ea1f64692447733745ffa06.tar.gz vdr-f2b637ed852c81301ea1f64692447733745ffa06.tar.bz2 |
Changed the interface of cStatus::Replaying()
Diffstat (limited to 'status.c')
-rw-r--r-- | status.c | 6 |
1 files changed, 3 insertions, 3 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.3 2002/06/16 13:24:36 kls Exp $ + * $Id: status.c 1.4 2002/07/13 10:49:34 kls Exp $ */ #include "status.h" @@ -35,10 +35,10 @@ void cStatus::MsgRecording(const cDevice *Device, const char *Name) sm->Recording(Device, Name); } -void cStatus::MsgReplaying(const cDvbPlayerControl *DvbPlayerControl, const char *Name) +void cStatus::MsgReplaying(const cControl *Control, const char *Name) { for (cStatus *sm = statusMonitors.First(); sm; sm = statusMonitors.Next(sm)) - sm->Replaying(DvbPlayerControl, Name); + sm->Replaying(Control, Name); } void cStatus::MsgSetVolume(int Volume, bool Absolute) |