diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2010-02-28 12:19:50 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2010-02-28 12:19:50 +0100 |
commit | 1eb033576f1829b4466ac27825af91e662e7b17f (patch) | |
tree | e02d623302de293070fe381db71f712207372606 /menuitems.h | |
parent | d255ad785d7a9f258097e6bba55c950d516b6a67 (diff) | |
download | vdr-1eb033576f1829b4466ac27825af91e662e7b17f.tar.gz vdr-1eb033576f1829b4466ac27825af91e662e7b17f.tar.bz2 |
Added plugin-defined sources
Diffstat (limited to 'menuitems.h')
-rw-r--r-- | menuitems.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/menuitems.h b/menuitems.h index 48324757..4805e3fd 100644 --- a/menuitems.h +++ b/menuitems.h @@ -4,13 +4,14 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menuitems.h 2.2 2009/05/03 12:50:34 kls Exp $ + * $Id: menuitems.h 2.3 2010/02/21 13:58:21 kls Exp $ */ #ifndef __MENUITEMS_H #define __MENUITEMS_H #include <limits.h> +#include "dvbdevice.h" #include "osdbase.h" extern const char *FileNameChars; @@ -175,11 +176,11 @@ public: class cMenuEditMapItem : public cMenuEditItem { protected: int *value; - const tChannelParameterMap *map; + const tDvbParameterMap *map; const char *zeroString; virtual void Set(void); public: - cMenuEditMapItem(const char *Name, int *Value, const tChannelParameterMap *Map, const char *ZeroString = NULL); + cMenuEditMapItem(const char *Name, int *Value, const tDvbParameterMap *Map, const char *ZeroString = NULL); virtual eOSState ProcessKey(eKeys Key); }; |