diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-11-11 13:31:02 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-11-11 13:31:02 +0100 |
commit | 13e925c3f49bc29514064ce52e3fa0ba0ca6c8ab (patch) | |
tree | a5c5ebc3dcf5c109399ab82c5a049f9612062449 /menuitems.h | |
parent | a311ea003eff2ef4646efe14e705af6f5d6f5992 (diff) | |
download | vdr-13e925c3f49bc29514064ce52e3fa0ba0ca6c8ab.tar.gz vdr-13e925c3f49bc29514064ce52e3fa0ba0ca6c8ab.tar.bz2 |
Fixed initializing the day index when editing the weekday parameter of a repeating timer
Diffstat (limited to 'menuitems.h')
-rw-r--r-- | menuitems.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/menuitems.h b/menuitems.h index b45fc960..f9afc151 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.11 2005/03/19 15:02:57 kls Exp $ + * $Id: menuitems.h 1.12 2005/11/11 13:26:51 kls Exp $ */ #ifndef __MENUITEMS_H @@ -125,6 +125,7 @@ private: int *weekdays; time_t oldvalue; int dayindex; + int FindDayIndex(int WeekDays); virtual void Set(void); public: cMenuEditDateItem(const char *Name, time_t *Value, int *WeekDays = NULL); |