From dbcea07600e22269f167ca74e56780a300f16a8d Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Tue, 9 May 2017 09:20:34 +0200 Subject: Changed the default return value of cEpgHandler::BeginSegmentTransfer() to true --- epg.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'epg.h') diff --git a/epg.h b/epg.h index 1341aa2e..949cd444 100644 --- a/epg.h +++ b/epg.h @@ -7,7 +7,7 @@ * Original version (as used in VDR before 1.3.0) written by * Robert Schneider and Rolf Hakenes . * - * $Id: epg.h 4.4 2017/04/02 11:22:21 kls Exp $ + * $Id: epg.h 4.5 2017/05/09 09:16:29 kls Exp $ */ #ifndef __EPG_H @@ -284,7 +284,7 @@ public: virtual bool DropOutdated(cSchedule *Schedule, time_t SegmentStart, time_t SegmentEnd, uchar TableID, uchar Version) { return false; } ///< Takes a look at all EPG events between SegmentStart and SegmentEnd and ///< drops outdated events. - virtual bool BeginSegmentTransfer(const cChannel *Channel, bool Dummy) { return false; } // TODO remove obsolete Dummy + virtual bool BeginSegmentTransfer(const cChannel *Channel, bool Dummy) { return true; } // TODO remove obsolete Dummy ///< Called directly after IgnoreChannel() before any other handler method is called. ///< Designed to give handlers the possibility to prepare a database transaction. ///< If any EPG handler returns false in this function, it is assumed that -- cgit v1.2.3