summaryrefslogtreecommitdiff
path: root/epg.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2012-06-04 09:49:48 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2012-06-04 09:49:48 +0200
commit4bce65eb10999e2c7500faa6113bb79af600dc2e (patch)
tree0bfc0dd48ec52f12beb3347068d08d4e854750a2 /epg.h
parentcd4a7e3ef4bca56685c288492a98659bc893a702 (diff)
downloadvdr-4bce65eb10999e2c7500faa6113bb79af600dc2e.tar.gz
vdr-4bce65eb10999e2c7500faa6113bb79af600dc2e.tar.bz2
Removed DeleteEvent() from the EPG handler interface (turned out not to be useful)
Diffstat (limited to 'epg.h')
-rw-r--r--epg.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/epg.h b/epg.h
index fc05c222..6930fe0c 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 <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>.
*
- * $Id: epg.h 2.10 2012/06/02 14:07:51 kls Exp $
+ * $Id: epg.h 2.11 2012/06/04 09:49:24 kls Exp $
*/
#ifndef __EPG_H
@@ -258,9 +258,6 @@ public:
virtual bool HandleEvent(cEvent *Event) { return false; }
///< After all modifications of the Event have been done, the EPG handler
///< can take a final look at it.
- virtual bool DeleteEvent(const cEvent *Event) { return false; }
- ///< After the complete processing of the Event is finished, an EPG handler
- ///< can decide that this Event shall be deleted from its schedule.
virtual bool SortSchedule(cSchedule *Schedule) { return false; }
///< Sorts the Schedule after the complete table has been processed.
virtual bool DropOutdated(cSchedule *Schedule, time_t SegmentStart, time_t SegmentEnd, uchar TableID, uchar Version) { return false; }
@@ -283,7 +280,6 @@ public:
void SetVps(cEvent *Event, time_t Vps);
void FixEpgBugs(cEvent *Event);
void HandleEvent(cEvent *Event);
- bool DeleteEvent(const cEvent *Event);
void SortSchedule(cSchedule *Schedule);
void DropOutdated(cSchedule *Schedule, time_t SegmentStart, time_t SegmentEnd, uchar TableID, uchar Version);
};