mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Removed an unused variable from cTimer::GetWDayFromMDay()
This commit is contained in:
parent
4f65416bd1
commit
4146ac1928
@ -1059,6 +1059,7 @@ Wayne Keer <syphir@syphir.sytes.net>
|
|||||||
cDvbDevice::cDvbDevice() in case a patch references them
|
cDvbDevice::cDvbDevice() in case a patch references them
|
||||||
for suggesting to make the "Channel not available!" message and mtInfo instead of
|
for suggesting to make the "Channel not available!" message and mtInfo instead of
|
||||||
mtError
|
mtError
|
||||||
|
for reporting an unused variable from cTimer::GetWDayFromMDay()
|
||||||
|
|
||||||
Marco Schlüßler <marco@lordzodiac.de>
|
Marco Schlüßler <marco@lordzodiac.de>
|
||||||
for fixing handling colors in cDvbSpuPalette::yuv2rgb()
|
for fixing handling colors in cDvbSpuPalette::yuv2rgb()
|
||||||
|
5
HISTORY
5
HISTORY
@ -3159,3 +3159,8 @@ Video Disk Recorder Revision History
|
|||||||
- Fixed toggling the "Day" item in the "Timers" menu, so that it selects the
|
- Fixed toggling the "Day" item in the "Timers" menu, so that it selects the
|
||||||
right day of week for timers in the future.
|
right day of week for timers in the future.
|
||||||
- Some improvements to cPoller (thanks to Marco Schlüßler).
|
- Some improvements to cPoller (thanks to Marco Schlüßler).
|
||||||
|
|
||||||
|
2004-11-22: Version 1.3.18
|
||||||
|
|
||||||
|
- Removed an unused variable from cTimer::GetWDayFromMDay() (thanks to Wayne Keer
|
||||||
|
for reporting this one).
|
||||||
|
6
config.h
6
config.h
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: config.h 1.205 2004/11/16 16:57:43 kls Exp $
|
* $Id: config.h 1.206 2004/11/22 16:49:39 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __CONFIG_H
|
#ifndef __CONFIG_H
|
||||||
@ -20,8 +20,8 @@
|
|||||||
#include "i18n.h"
|
#include "i18n.h"
|
||||||
#include "tools.h"
|
#include "tools.h"
|
||||||
|
|
||||||
#define VDRVERSION "1.3.17"
|
#define VDRVERSION "1.3.18"
|
||||||
#define VDRVERSNUM 10317 // Version * 10000 + Major * 100 + Minor
|
#define VDRVERSNUM 10318 // Version * 10000 + Major * 100 + Minor
|
||||||
|
|
||||||
#define MAXPRIORITY 99
|
#define MAXPRIORITY 99
|
||||||
#define MAXLIFETIME 99
|
#define MAXLIFETIME 99
|
||||||
|
3
timers.c
3
timers.c
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: timers.c 1.18 2004/11/21 13:15:33 kls Exp $
|
* $Id: timers.c 1.19 2004/11/22 16:49:15 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "timers.h"
|
#include "timers.h"
|
||||||
@ -272,7 +272,6 @@ int cTimer::GetWDay(time_t t)
|
|||||||
int cTimer::GetWDayFromMDay(int MDay)
|
int cTimer::GetWDayFromMDay(int MDay)
|
||||||
{
|
{
|
||||||
time_t now = time(NULL);
|
time_t now = time(NULL);
|
||||||
int md = GetMDay(now);
|
|
||||||
for (int i = -1; i <= 28; i++) { // looking 4 weeks into the future should be enough
|
for (int i = -1; i <= 28; i++) { // looking 4 weeks into the future should be enough
|
||||||
time_t t0 = IncDay(now, i);
|
time_t t0 = IncDay(now, i);
|
||||||
if (GetMDay(t0) == MDay)
|
if (GetMDay(t0) == MDay)
|
||||||
|
Loading…
Reference in New Issue
Block a user