diff options
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | osditem.c | 4 |
2 files changed, 5 insertions, 0 deletions
@@ -2,6 +2,7 @@ VDR Plugin 'neutrinoepg' Revision History XXXX-XX-XX: Version 0.3.7 - [fix] Wenn ProgressBar eingestellt ist auf Textbalken, nutze für REC und Timer auch "*" "#" anstatt VDRSymbols +- [add] Support for vdr-2.3.1 2013-21-09: Version 0.3.6 - [Feature] Unterstützung für Textbalken bei der ProgressBar @@ -36,7 +36,11 @@ void Icons::InitCharSet() } // --- myWhatsOnItem ---------------------------------------------------------- +#if APIVERSNUM >= 20301 myOsdItem::myOsdItem(const cEvent *Event, const cChannel *Channel, bool Next) +#else +myOsdItem::myOsdItem(const cEvent *Event, cChannel *Channel, bool Next) +#endif { event = Event; channel = Channel; |