summaryrefslogtreecommitdiff
path: root/status.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-07-13 11:16:27 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2002-07-13 11:16:27 +0200
commitf2b637ed852c81301ea1f64692447733745ffa06 (patch)
tree5fbc94d79a14433b8197a9e16d7795fe65fdbc50 /status.c
parentd5208be84b6d604051f04b024ad65c004006fc50 (diff)
downloadvdr-f2b637ed852c81301ea1f64692447733745ffa06.tar.gz
vdr-f2b637ed852c81301ea1f64692447733745ffa06.tar.bz2
Changed the interface of cStatus::Replaying()
Diffstat (limited to 'status.c')
-rw-r--r--status.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/status.c b/status.c
index 76dc8404..0bc4dd8e 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.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)