mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Added a missing template specification to the c'tor of cSortedTimers
This commit is contained in:
parent
3efb79c855
commit
1bb441e699
@ -1744,6 +1744,7 @@ Udo Richter <udo_richter@gmx.de>
|
|||||||
for a patch that sets the start time of an edited recording to the time of the first
|
for a patch that sets the start time of an edited recording to the time of the first
|
||||||
editing mark
|
editing mark
|
||||||
for adding the option --outputonly to the dvbsddevice plugin
|
for adding the option --outputonly to the dvbsddevice plugin
|
||||||
|
for adding a missing template specification to the c'tor of cSortedTimers
|
||||||
|
|
||||||
Sven Kreiensen <svenk@kammer.uni-hannover.de>
|
Sven Kreiensen <svenk@kammer.uni-hannover.de>
|
||||||
for his help in keeping 'channels.conf.terr' up to date
|
for his help in keeping 'channels.conf.terr' up to date
|
||||||
|
5
HISTORY
5
HISTORY
@ -7147,3 +7147,8 @@ Video Disk Recorder Revision History
|
|||||||
- Speeded up opening menus on systems with many (several thousands) of recordings, by
|
- Speeded up opening menus on systems with many (several thousands) of recordings, by
|
||||||
caching the information whether a recording is stored on the video directory file
|
caching the information whether a recording is stored on the video directory file
|
||||||
system within the cRecording data (based on a patch from Torsten Lang).
|
system within the cRecording data (based on a patch from Torsten Lang).
|
||||||
|
|
||||||
|
2012-06-03: Version 1.7.29
|
||||||
|
|
||||||
|
- Added a missing template specification to the c'tor of cSortedTimers (thanks to Udo
|
||||||
|
Richter).
|
||||||
|
10
config.h
10
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 2.47 2012/04/15 10:45:32 kls Exp $
|
* $Id: config.h 2.48 2012/06/03 13:04:49 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __CONFIG_H
|
#ifndef __CONFIG_H
|
||||||
@ -22,13 +22,13 @@
|
|||||||
|
|
||||||
// VDR's own version number:
|
// VDR's own version number:
|
||||||
|
|
||||||
#define VDRVERSION "1.7.28"
|
#define VDRVERSION "1.7.29"
|
||||||
#define VDRVERSNUM 10728 // Version * 10000 + Major * 100 + Minor
|
#define VDRVERSNUM 10729 // Version * 10000 + Major * 100 + Minor
|
||||||
|
|
||||||
// The plugin API's version number:
|
// The plugin API's version number:
|
||||||
|
|
||||||
#define APIVERSION "1.7.28"
|
#define APIVERSION "1.7.29"
|
||||||
#define APIVERSNUM 10728 // Version * 10000 + Major * 100 + Minor
|
#define APIVERSNUM 10729 // Version * 10000 + Major * 100 + Minor
|
||||||
|
|
||||||
// When loading plugins, VDR searches them by their APIVERSION, which
|
// When loading plugins, VDR searches them by their APIVERSION, which
|
||||||
// may be smaller than VDRVERSION in case there have been no changes to
|
// may be smaller than VDRVERSION in case there have been no changes to
|
||||||
|
4
timers.c
4
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 2.9 2012/06/02 12:10:00 kls Exp $
|
* $Id: timers.c 2.10 2012/06/03 13:04:23 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "timers.h"
|
#include "timers.h"
|
||||||
@ -829,7 +829,7 @@ static int CompareTimers(const void *a, const void *b)
|
|||||||
}
|
}
|
||||||
|
|
||||||
cSortedTimers::cSortedTimers(void)
|
cSortedTimers::cSortedTimers(void)
|
||||||
:cVector(Timers.Count())
|
:cVector<const cTimer *>(Timers.Count())
|
||||||
{
|
{
|
||||||
for (const cTimer *Timer = Timers.First(); Timer; Timer = Timers.Next(Timer))
|
for (const cTimer *Timer = Timers.First(); Timer; Timer = Timers.Next(Timer))
|
||||||
Append(Timer);
|
Append(Timer);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user