diff options
Diffstat (limited to 'myreplaycontrol.c')
-rw-r--r-- | myreplaycontrol.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/myreplaycontrol.c b/myreplaycontrol.c index 65c9dd5..bdfb123 100644 --- a/myreplaycontrol.c +++ b/myreplaycontrol.c @@ -5,16 +5,17 @@ #include <vdr/interface.h> #include <vdr/status.h> #include "myreplaycontrol.h" +#include "mymenusetup.h" -bool myReplayControl::jumprec=true; +myReplayControl::~myReplayControl() +{ + cRemote::CallPlugin("extrecmenu"); +} eOSState myReplayControl::ProcessKey(eKeys Key) { if(Key==kBack) - { - cRemote::CallPlugin("extrecmenu"); return osEnd; - } return cReplayControl::ProcessKey(Key); } |