summaryrefslogtreecommitdiff
path: root/menu.h
diff options
context:
space:
mode:
authorhorchi <vdr@jwendel.de>2017-03-14 07:30:24 +0100
committerhorchi <vdr@jwendel.de>2017-03-14 07:30:24 +0100
commit3345d4c5afa59a3a7f536fec61fb314bc00640c6 (patch)
treecaeb9c570da706f088ddea3727d8a704b1810255 /menu.h
parentfc75b2cfa67c6b910293059614325c10a720f995 (diff)
downloadvdr-plugin-epg2vdr-3345d4c5afa59a3a7f536fec61fb314bc00640c6.tar.gz
vdr-plugin-epg2vdr-3345d4c5afa59a3a7f536fec61fb314bc00640c6.tar.bz2
2017-03-146: version 1.1.47 (horchi)\n - added: Started extended event interface for skins\n\n1.1.47
Diffstat (limited to 'menu.h')
-rw-r--r--menu.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/menu.h b/menu.h
index afde73e..40a1197 100644
--- a/menu.h
+++ b/menu.h
@@ -400,6 +400,7 @@ class cMenuEpgScheduleItem : public cOsdItem
enum eScheduleSortMode { ssmAllThis, ssmThisThis, ssmThisAll, ssmAllAll }; // "which event(s) on which channel(s)"
cMenuEpgScheduleItem(cMenuDb* db, const cEvent* Event, const cChannel* Channel = 0, bool WithDate = no);
+ ~cMenuEpgScheduleItem();
static void SetSortMode(eScheduleSortMode SortMode) { sortMode = SortMode; }
static void IncSortMode() { sortMode = eScheduleSortMode((sortMode == ssmAllAll) ? ssmAllThis : sortMode + 1); }
@@ -417,6 +418,7 @@ class cMenuEpgScheduleItem : public cOsdItem
private:
cMenuDb* menuDb;
+ cEpgEvent* ownEvent;
static eScheduleSortMode sortMode;
};