diff options
author | Frank Neumann <fnu@yavdr.org> | 2017-05-01 13:37:24 +0200 |
---|---|---|
committer | Frank Neumann <fnu@yavdr.org> | 2017-05-01 13:37:24 +0200 |
commit | d9005291ea1c4b083a160deee7f0248407798f71 (patch) | |
tree | 91536b24857d67da1fe1d23e6f2b1b36cbeefcc2 /menu_commands.c | |
parent | 6d21a1d0000c9d2e2d47ca566b8532706917d563 (diff) | |
download | vdr-plugin-epgsearch-d9005291ea1c4b083a160deee7f0248407798f71.tar.gz vdr-plugin-epgsearch-d9005291ea1c4b083a160deee7f0248407798f71.tar.bz2 |
Commit 0003-Use-HandleRemoteTimerModifications-instead-of-Handle.diff (thx jasminj@vdr-portal.de)
Diffstat (limited to 'menu_commands.c')
-rw-r--r-- | menu_commands.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/menu_commands.c b/menu_commands.c index f3194e9..3c7bfe6 100644 --- a/menu_commands.c +++ b/menu_commands.c @@ -40,10 +40,6 @@ The project's page is at http://winni.vdr-developer.org/epgsearch #include <vdr/menu.h> #include "menu_deftimercheckmethod.h" -#if VDRVERSNUM > 20300 -extern bool HandleRemoteModifications(cTimer* NewTimer, cTimer* OldTimer); -#endif - // --- cMenuSearchCommands --------------------------------------------------------- cMenuSearchCommands::cMenuSearchCommands(const char *Title, const cEvent* Event, bool DirectCall, cSearchExt* Search) @@ -195,7 +191,7 @@ eOSState cMenuSearchCommands::Record(void) timer->Matches(); vdrtimers->SetModified(); #if VDRVERSNUM > 20300 - if (!HandleRemoteModifications(timer,NULL)) { + if (!HandleRemoteTimerModifications(timer)) { vdrtimers->Del(timer); delete timer; } |