diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-08-25 13:27:26 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-08-25 13:27:26 +0200 |
commit | 14d3933d91af23a9d79c083163fe6f0281475001 (patch) | |
tree | cafb1cc5bb640d02f0a615a9d00c3511f5b7db40 /osd.h | |
parent | 8edfaa2345140bb35eeaa29e08940eb665389a65 (diff) | |
download | vdr-14d3933d91af23a9d79c083163fe6f0281475001.tar.gz vdr-14d3933d91af23a9d79c083163fe6f0281475001.tar.bz2 |
The menus and the channel display now show the current date and time
Diffstat (limited to 'osd.h')
-rw-r--r-- | osd.h | 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: osd.h 1.23 2001/08/02 13:48:34 kls Exp $ + * $Id: osd.h 1.24 2001/08/25 12:56:46 kls Exp $ */ #ifndef __OSD_H @@ -72,7 +72,7 @@ public: class cOsdMenu : public cOsdBase, public cList<cOsdItem> { private: - const char *title; + char *title; int cols[cInterface::MaxCols]; int first, current, marked; cOsdMenu *subMenu; @@ -94,7 +94,7 @@ protected: eOSState AddSubMenu(cOsdMenu *SubMenu); bool HasSubMenu(void) { return subMenu; } void SetStatus(const char *s); - void SetTitle(const char *Title, bool Copy = true); + void SetTitle(const char *Title, bool ShowDate = true); void SetHelp(const char *Red, const char *Green = NULL, const char *Yellow = NULL, const char *Blue = NULL); virtual void Del(int Index); public: |