diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-11-21 13:28:05 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-11-21 13:28:05 +0100 |
commit | c2daf37ed136f85dd94cfd6cfa670aba9d93193c (patch) | |
tree | c4ff721ed234d1f90900c60078458ec0faeb9ec0 /menuitems.h | |
parent | 969864aacbe593fb237aa173f68eb61f859e8e66 (diff) | |
download | vdr-c2daf37ed136f85dd94cfd6cfa670aba9d93193c.tar.gz vdr-c2daf37ed136f85dd94cfd6cfa670aba9d93193c.tar.bz2 |
Fixed toggling the 'Day' item in the 'Timers' menu, so that it selects the right day of week for timers in the future
Diffstat (limited to 'menuitems.h')
-rw-r--r-- | menuitems.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/menuitems.h b/menuitems.h index 5a2912c8..28904013 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.9 2004/05/16 12:45:14 kls Exp $ + * $Id: menuitems.h 1.10 2004/11/21 13:23:00 kls Exp $ */ #ifndef __MENUITEMS_H @@ -119,9 +119,11 @@ public: }; class cMenuEditDayItem : public cMenuEditIntItem { -protected: +private: static int days[]; int d; + int md; +protected: virtual void Set(void); public: cMenuEditDayItem(const char *Name, int *Value); |