mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed a missing initialization in the c'tor of cSkinLCARSDisplayChannel
This commit is contained in:
parent
25e05054a6
commit
7b634a092c
@ -2136,6 +2136,7 @@ Marko M
|
|||||||
pressed in string input fields
|
pressed in string input fields
|
||||||
for fixing missing ',' in the Italian and Polish OSD texts
|
for fixing missing ',' in the Italian and Polish OSD texts
|
||||||
for pointing out that "Menu button closes" should actually be "Menu key closes"
|
for pointing out that "Menu button closes" should actually be "Menu key closes"
|
||||||
|
for fixing a missing initialization in the c'tor of cSkinLCARSDisplayChannel
|
||||||
|
|
||||||
Patrick Rother <krd-vdr@gulu.net>
|
Patrick Rother <krd-vdr@gulu.net>
|
||||||
for reporting a bug in defining timers that only differ in the day of week
|
for reporting a bug in defining timers that only differ in the day of week
|
||||||
|
2
HISTORY
2
HISTORY
@ -7858,3 +7858,5 @@ Video Disk Recorder Revision History
|
|||||||
|
|
||||||
- The LIRC remote control now connects to the socket even if it doesn't yet exist when
|
- The LIRC remote control now connects to the socket even if it doesn't yet exist when
|
||||||
VDR is started (thanks to Lars Hanisch).
|
VDR is started (thanks to Lars Hanisch).
|
||||||
|
- Fixed a missing initialization in the c'tor of cSkinLCARSDisplayChannel (thanks to
|
||||||
|
Marko Mäkelä).
|
||||||
|
@ -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: skinlcars.c 2.21.1.1 2013/05/19 12:08:52 kls Exp $
|
* $Id: skinlcars.c 2.21.1.2 2013/11/15 15:25:11 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// "Star Trek: The Next Generation"(R) is a registered trademark of Paramount Pictures,
|
// "Star Trek: The Next Generation"(R) is a registered trademark of Paramount Pictures,
|
||||||
@ -1710,6 +1710,7 @@ cSkinLCARSDisplayReplay::cSkinLCARSDisplayReplay(bool ModeOnly)
|
|||||||
frameColor = Theme.Color(clrReplayFrameBg);
|
frameColor = Theme.Color(clrReplayFrameBg);
|
||||||
lastCurrentWidth = 0;
|
lastCurrentWidth = 0;
|
||||||
lastTotalWidth = 0;
|
lastTotalWidth = 0;
|
||||||
|
memset(&lastTrackId, 0, sizeof(lastTrackId));
|
||||||
int d = 5 * lineHeight;
|
int d = 5 * lineHeight;
|
||||||
xp00 = 0;
|
xp00 = 0;
|
||||||
xp01 = xp00 + d / 2;
|
xp01 = xp00 + d / 2;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user