diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2011-06-13 14:48:41 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2011-06-13 14:48:41 +0200 |
commit | 263dc295089a2accc385c87c23b177314d65acea (patch) | |
tree | 9e3ec03a06e01758eec7863ec17d3fb8cbcf589e /menuitems.h | |
parent | 61a9b0940378e395915048d7021706aa51714556 (diff) | |
download | vdr-263dc295089a2accc385c87c23b177314d65acea.tar.gz vdr-263dc295089a2accc385c87c23b177314d65acea.tar.bz2 |
The initial channel is now stored by the channel ID in the setup.conf file
Diffstat (limited to 'menuitems.h')
-rw-r--r-- | menuitems.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/menuitems.h b/menuitems.h index 6e8f1082..a6f27438 100644 --- a/menuitems.h +++ b/menuitems.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menuitems.h 2.4 2010/06/06 10:32:38 kls Exp $ + * $Id: menuitems.h 2.5 2011/06/13 13:46:03 kls Exp $ */ #ifndef __MENUITEMS_H @@ -133,9 +133,12 @@ public: class cMenuEditChanItem : public cMenuEditIntItem { protected: const char *noneString; + int dummyValue; + cString *channelID; virtual void Set(void); public: cMenuEditChanItem(const char *Name, int *Value, const char *NoneString = NULL); + cMenuEditChanItem(const char *Name, cString *ChannelID, const char *NoneString = NULL); virtual eOSState ProcessKey(eKeys Key); }; |