summaryrefslogtreecommitdiff
path: root/status.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-06-16 13:26:00 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2002-06-16 13:26:00 +0200
commit3ab746babd6d879f05b4cbc76662c65cf4146397 (patch)
tree0312baea9a9cef76689a86d6e74ffed68320e1cc /status.h
parenta4bfddd2f995ad03409de005bc3015437c10aa06 (diff)
downloadvdr-3ab746babd6d879f05b4cbc76662c65cf4146397.tar.gz
vdr-3ab746babd6d879f05b4cbc76662c65cf4146397.tar.bz2
Changed 'cStatusMonitor' to 'cStatus'1.1.3
Diffstat (limited to 'status.h')
-rw-r--r--status.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/status.h b/status.h
index e478ee1d..d68f23ad 100644
--- a/status.h
+++ b/status.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: status.h 1.2 2002/06/16 12:09:55 kls Exp $
+ * $Id: status.h 1.3 2002/06/16 13:24:50 kls Exp $
*/
#ifndef __STATUS_H
@@ -15,9 +15,9 @@
#include "dvbplayer.h"
#include "tools.h"
-class cStatusMonitor : public cListObject {
+class cStatus : public cListObject {
private:
- static cList<cStatusMonitor> statusMonitors;
+ static cList<cStatus> statusMonitors;
protected:
// These functions can be implemented by derived classes to receive status information:
virtual void ChannelSwitch(const cDevice *Device, int ChannelNumber) {}
@@ -55,8 +55,8 @@ protected:
virtual void OsdProgramme(time_t PresentTime, const char *PresentTitle, const char *PresentSubtitle, time_t FollowingTime, const char *FollowingTitle, const char *FollowingSubtitle) {}
// The OSD displays the given programme information.
public:
- cStatusMonitor(void);
- virtual ~cStatusMonitor();
+ cStatus(void);
+ virtual ~cStatus();
// These functions are called whenever the related status information changes:
static void MsgChannelSwitch(const cDevice *Device, int ChannelNumber);
static void MsgRecording(const cDevice *Device, const char *Name);