summaryrefslogtreecommitdiff
path: root/myreplaycontrol.c
diff options
context:
space:
mode:
authorMartin Prochnow <nordlicht@martins-kabuff.de>2006-03-11 19:58:00 +0100
committerAndreas Mair <andreas@vdr-developer.org>2006-03-11 19:58:00 +0100
commitbabfdd26f9d2fbe164205951413d74aa6d21ef23 (patch)
treeabdcb04fadc2894e23ac028aa76835ecb55d991e /myreplaycontrol.c
parent93372f4ecc69a079c0e5c5af9169f39222983667 (diff)
downloadvdr-plugin-extrecmenu-babfdd26f9d2fbe164205951413d74aa6d21ef23.tar.gz
vdr-plugin-extrecmenu-babfdd26f9d2fbe164205951413d74aa6d21ef23.tar.bz2
Version 0.2v0.2
- implemented own dvbplayercontrol-class so that people who haved patch their vdr with the jumpplay-patch can compile the plugin - 'Info' while replaying opens recording info - option 'Info' added to recordings list to schow the description of a recording - details (date and time) of recordings are shown now
Diffstat (limited to 'myreplaycontrol.c')
-rw-r--r--myreplaycontrol.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/myreplaycontrol.c b/myreplaycontrol.c
index f88d447..6003c44 100644
--- a/myreplaycontrol.c
+++ b/myreplaycontrol.c
@@ -1,10 +1,10 @@
-#include "extrecmenu.h"
+#include "myreplaycontrol.h"
char *myReplayControl::fileName = NULL;
char *myReplayControl::title = NULL;
myReplayControl::myReplayControl(void)
-:cDvbPlayerControl(fileName)
+:myDvbPlayerControl(fileName)
{
displayReplay = NULL;
visible = modeOnly = shown = displayFrames = false;
@@ -318,9 +318,9 @@ void myReplayControl::EditTest(void)
cOsdObject *myReplayControl::GetInfo(void)
{
-// cRecording *Recording = Recordings.GetByName(myReplayControl::LastReplayed());
-// if (Recording)
-// return new myMenuRecording(Recording, false);
+ cRecording *Recording = Recordings.GetByName(myReplayControl::LastReplayed());
+ if (Recording)
+ return new myMenuRecordingInfo(Recording, false);
return NULL;
}