diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2012-05-12 14:20:41 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2012-05-12 14:20:41 +0200 |
commit | 5f93700e07382ec2d1ef735f36f4f988f0318ad2 (patch) | |
tree | 188c7eff4ccbae80c5c505e25039b0b91328b2ae /menu.h | |
parent | 2193ea32f62c4394be13e2950896f49e01e1d14f (diff) | |
download | vdr-5f93700e07382ec2d1ef735f36f4f988f0318ad2.tar.gz vdr-5f93700e07382ec2d1ef735f36f4f988f0318ad2.tar.bz2 |
The new member function cSkinDisplayReplay::SetRecording() allows a skin to display more information about the currently played recording
Diffstat (limited to 'menu.h')
-rw-r--r-- | menu.h | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.h 2.8 2012/04/28 11:13:03 kls Exp $ + * $Id: menu.h 2.9 2012/05/12 11:48:04 kls Exp $ */ #ifndef __MENU_H @@ -269,8 +269,7 @@ private: void TimeSearch(void); void ShowTimed(int Seconds = 0); static cReplayControl *currentReplayControl; - static char *fileName; - static char *title; + static cString fileName; void ShowMode(void); bool ShowProgress(bool Initial); void MarkToggle(void); @@ -288,7 +287,7 @@ public: virtual void Show(void); virtual void Hide(void); bool Visible(void) { return visible; } - static void SetRecording(const char *FileName, const char *Title); + static void SetRecording(const char *FileName); static const char *NowReplaying(void); static const char *LastReplayed(void); static void ClearLastReplayed(const char *FileName); |