diff options
Diffstat (limited to 'menuitems.h')
-rw-r--r-- | menuitems.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/menuitems.h b/menuitems.h index c54f147e..ce252b1e 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 1.13 2006/01/03 12:45:38 kls Exp $ + * $Id: menuitems.h 1.14 2006/01/06 14:19:12 kls Exp $ */ #ifndef __MENUITEMS_H @@ -44,12 +44,12 @@ public: class cMenuEditBitItem : public cMenuEditBoolItem { protected: - int *value; + uint *value; + uint mask; int bit; - int mask; virtual void Set(void); public: - cMenuEditBitItem(const char *Name, int *Value, int Mask, const char *FalseString = NULL, const char *TrueString = NULL); + cMenuEditBitItem(const char *Name, uint *Value, uint Mask, const char *FalseString = NULL, const char *TrueString = NULL); }; class cMenuEditNumItem : public cMenuEditItem { |