diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-11-14 16:27:27 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-11-14 16:27:27 +0100 |
commit | ac8e03a89cb86e2f68924533d53a3c93f7c972c9 (patch) | |
tree | d0a5ef85f87cae71c85c0512668db07c5395e7f9 /timers.h | |
parent | 1ed36b04bc06f73abea7b774ae9990d4e4ec671c (diff) | |
download | vdr-ac8e03a89cb86e2f68924533d53a3c93f7c972c9.tar.gz vdr-ac8e03a89cb86e2f68924533d53a3c93f7c972c9.tar.bz2 |
Implemented handling of number keys in the 'Timers' menu for toggling days1.3.16
Diffstat (limited to 'timers.h')
-rw-r--r-- | timers.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: timers.h 1.10 2004/10/31 16:41:17 kls Exp $ + * $Id: timers.h 1.11 2004/11/14 16:02:28 kls Exp $ */ #ifndef __TIMERS_H @@ -64,8 +64,8 @@ public: bool Parse(const char *s); bool Save(FILE *f); bool IsSingleEvent(void) const; - int GetMDay(time_t t) const; - int GetWDay(time_t t) const; + static int GetMDay(time_t t); + static int GetWDay(time_t t); bool DayMatches(time_t t) const; static time_t IncDay(time_t t, int Days); static time_t SetTime(time_t t, int SecondsFromMidnight); |