summaryrefslogtreecommitdiff
path: root/menu_commands.c
diff options
context:
space:
mode:
authorFrank Neumann <fnu@yavdr.org>2017-05-01 13:37:24 +0200
committerFrank Neumann <fnu@yavdr.org>2017-05-01 13:37:24 +0200
commitd9005291ea1c4b083a160deee7f0248407798f71 (patch)
tree91536b24857d67da1fe1d23e6f2b1b36cbeefcc2 /menu_commands.c
parent6d21a1d0000c9d2e2d47ca566b8532706917d563 (diff)
downloadvdr-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.c6
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;
}