diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2012-06-06 16:19:32 +0200 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2012-06-06 16:19:32 +0200 |
commit | e791012352b1b27f509273d4113a4276c876d0b6 (patch) | |
tree | 774773f80bae69c04ba743598ab5ac6e29ac8e0d | |
parent | feec52c21fb4a3245563e92c43b1641f92e60131 (diff) | |
download | vdr-plugin-extrecmenu-e791012352b1b27f509273d4113a4276c876d0b6.tar.gz vdr-plugin-extrecmenu-e791012352b1b27f509273d4113a4276c876d0b6.tar.bz2 |
Fixed compiling with VDR 1.7.28.
-rw-r--r-- | HISTORY | 3 | ||||
-rw-r--r-- | mymenurecordings.c | 4 |
2 files changed, 7 insertions, 0 deletions
@@ -1,6 +1,9 @@ VDR Plugin 'extrecmenu' Revision History ---------------------------------------- +2012-xx-xx: Version 1.2.3 +- [amair] Fixed compiling with VDR 1.7.28. + 2012-04-29: Version 1.2.2 - [amair] Updated Italian translation (Submitted by Gringo) (Closes #673). - [amair] Don't show recordings menu if replay is stopped using kStop (Closes #934). diff --git a/mymenurecordings.c b/mymenurecordings.c index 0140b03..d2ea8c8 100644 --- a/mymenurecordings.c +++ b/mymenurecordings.c @@ -1031,7 +1031,11 @@ eOSState myMenuRecordings::Play() buffer=NULL; } golastreplayed=true; +#if VDRVERSNUM >= 10728 + myReplayControl::SetRecording(recording->FileName()); +#else myReplayControl::SetRecording(recording->FileName(),recording->Title()); +#endif cControl::Shutdown(); isyslog("[extrecmenu] starting replay of recording"); cControl::Launch(new myReplayControl()); |