diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2012-12-11 10:08:21 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2012-12-11 10:08:21 +0100 |
commit | 169bfc012856ef0d7d86734c922cd49ea1dfe2e5 (patch) | |
tree | 7617860e2caa80526fdff840b233c69718a27de5 /skins.h | |
parent | 03658cd48043c0efdede21718d06aceec0c6b93e (diff) | |
download | vdr-169bfc012856ef0d7d86734c922cd49ea1dfe2e5.tar.gz vdr-169bfc012856ef0d7d86734c922cd49ea1dfe2e5.tar.bz2 |
Changed the type of the TimerMatch parameter in cSkinDisplayMenu::SetItemEvent() from 'int' to 'eTimerEvent'
Diffstat (limited to 'skins.h')
-rw-r--r-- | skins.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: skins.h 2.7 2012/12/07 17:18:44 kls Exp $ + * $Id: skins.h 2.8 2012/12/11 09:58:53 kls Exp $ */ #ifndef __SKINS_H @@ -153,7 +153,7 @@ public: ///< this function will be first called for the old current item ///< with Current set to false, and then for the new current item ///< with Current set to true. - virtual bool SetItemEvent(const cEvent *Event, int Index, bool Current, bool Selectable, const cChannel *Channel, bool WithDate, int TimerMatch) { return false; } + virtual bool SetItemEvent(const cEvent *Event, int Index, bool Current, bool Selectable, const cChannel *Channel, bool WithDate, eTimerMatch TimerMatch) { return false; } ///< Sets the item at the given Index to Event. See SetItem() for more information. ///< If a derived skin class implements this function, it can display an Event item ///< in a more elaborate way than just a simple line of text. |