diff options
author | horchi <vdr@jwendel.de> | 2017-03-15 20:05:03 +0100 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2017-03-15 20:05:03 +0100 |
commit | 484b744d47a901e2537edcab5f4b10bbc5e9b22e (patch) | |
tree | 5032215691c36d9a8f6da184fb0d1969a62b8c48 /menu.h | |
parent | 3345d4c5afa59a3a7f536fec61fb314bc00640c6 (diff) | |
download | vdr-plugin-epg2vdr-484b744d47a901e2537edcab5f4b10bbc5e9b22e.tar.gz vdr-plugin-epg2vdr-484b744d47a901e2537edcab5f4b10bbc5e9b22e.tar.bz2 |
added extra data to plugin interface
Diffstat (limited to 'menu.h')
-rw-r--r-- | menu.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -58,6 +58,7 @@ class cMenuDb : public cParameters friend class cMenuEpgMatchRecordings; friend class cEpgMenuSearchResult; friend class cMenuSetupEPG2VDR; + friend class cMenuEpgScheduleItem; public: @@ -116,6 +117,7 @@ class cMenuDb : public cParameters cDbTable* useeventsDb; cDbStatement* selectTimers; + cDbStatement* selectEventById; cDbStatement* selectMaxUpdSp; cDbStatement* selectTimerById; cDbStatement* selectActiveVdrs; @@ -410,7 +412,7 @@ class cMenuEpgScheduleItem : public cOsdItem virtual bool Update(bool Force = false); virtual void SetMenuItem(cSkinDisplayMenu *DisplayMenu, int Index, bool Current, bool Selectable); - const cEvent* event; + cEpgEvent* event; const cChannel* channel; bool withDate; int timerMatch; @@ -418,7 +420,7 @@ class cMenuEpgScheduleItem : public cOsdItem private: cMenuDb* menuDb; - cEpgEvent* ownEvent; + int eventReady; static eScheduleSortMode sortMode; }; |