summaryrefslogtreecommitdiff
path: root/menuitems.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-01-06 14:31:57 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2006-01-06 14:31:57 +0100
commit72e93b614bac42cd4a142b10d47e5b1673f19800 (patch)
tree985000a2d5572c83903247fec904df04fb8c64c3 /menuitems.h
parent16f037e3c23efadcc846fd7dc780b42036fabf01 (diff)
downloadvdr-72e93b614bac42cd4a142b10d47e5b1673f19800.tar.gz
vdr-72e93b614bac42cd4a142b10d47e5b1673f19800.tar.bz2
The "flags" of a timer are now handled as an unsigned integer value
Diffstat (limited to 'menuitems.h')
-rw-r--r--menuitems.h8
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 {