diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-01-06 14:31:57 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-01-06 14:31:57 +0100 |
commit | 72e93b614bac42cd4a142b10d47e5b1673f19800 (patch) | |
tree | 985000a2d5572c83903247fec904df04fb8c64c3 /menuitems.c | |
parent | 16f037e3c23efadcc846fd7dc780b42036fabf01 (diff) | |
download | vdr-72e93b614bac42cd4a142b10d47e5b1673f19800.tar.gz vdr-72e93b614bac42cd4a142b10d47e5b1673f19800.tar.bz2 |
The "flags" of a timer are now handled as an unsigned integer value
Diffstat (limited to 'menuitems.c')
-rw-r--r-- | menuitems.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/menuitems.c b/menuitems.c index 77f532c1..04b25d58 100644 --- a/menuitems.c +++ b/menuitems.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menuitems.c 1.25 2006/01/03 12:47:39 kls Exp $ + * $Id: menuitems.c 1.26 2006/01/06 14:19:06 kls Exp $ */ #include "menuitems.h" @@ -116,7 +116,7 @@ void cMenuEditBoolItem::Set(void) // --- cMenuEditBitItem ------------------------------------------------------ -cMenuEditBitItem::cMenuEditBitItem(const char *Name, int *Value, int Mask, const char *FalseString, const char *TrueString) +cMenuEditBitItem::cMenuEditBitItem(const char *Name, uint *Value, uint Mask, const char *FalseString, const char *TrueString) :cMenuEditBoolItem(Name, &bit, FalseString, TrueString) { value = Value; |