summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2013-11-16 13:29:34 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2013-11-16 13:29:34 +0100
commitcca9d858a7db91f6d73e19d588732e789dc10b4f (patch)
treea10a417a7a358d56ef7f568802a417b6e0ce317b
parent7b634a092cd77edeaa6ab51f424bc1211af25d7d (diff)
downloadvdr-cca9d858a7db91f6d73e19d588732e789dc10b4f.tar.gz
vdr-cca9d858a7db91f6d73e19d588732e789dc10b4f.tar.bz2
Fixed uninitialized item area coordinates in cSkinLCARSDisplayMenu
-rw-r--r--CONTRIBUTORS1
-rw-r--r--HISTORY4
-rw-r--r--skinlcars.c11
3 files changed, 14 insertions, 2 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index 81e2a370..219d4c45 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -2137,6 +2137,7 @@ Marko Mäkelä <marko.makela@hut.fi>
for fixing missing ',' in the Italian and Polish OSD texts
for pointing out that "Menu button closes" should actually be "Menu key closes"
for fixing a missing initialization in the c'tor of cSkinLCARSDisplayChannel
+ for reporting some uninitialized item area coordinates in cSkinLCARSDisplayMenu
Patrick Rother <krd-vdr@gulu.net>
for reporting a bug in defining timers that only differ in the day of week
diff --git a/HISTORY b/HISTORY
index fcd81942..a13f195b 100644
--- a/HISTORY
+++ b/HISTORY
@@ -7854,9 +7854,11 @@ Video Disk Recorder Revision History
the last replayed recording (if any) by pressing Ok repeatedly in the Recordings
menu.
-2013-10-29: Version 2.0.5
+2013-11-16: Version 2.0.5
- The LIRC remote control now connects to the socket even if it doesn't yet exist when
VDR is started (thanks to Lars Hanisch).
- Fixed a missing initialization in the c'tor of cSkinLCARSDisplayChannel (thanks to
Marko Mäkelä).
+- Fixed uninitialized item area coordinates in cSkinLCARSDisplayMenu (reported by
+ Marko Mäkelä).
diff --git a/skinlcars.c b/skinlcars.c
index 172bc9ca..6ee24f27 100644
--- a/skinlcars.c
+++ b/skinlcars.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: skinlcars.c 2.21.1.2 2013/11/15 15:25:11 kls Exp $
+ * $Id: skinlcars.c 2.21.1.3 2013/11/16 13:28:19 kls Exp $
*/
// "Star Trek: The Next Generation"(R) is a registered trademark of Paramount Pictures,
@@ -837,6 +837,15 @@ cSkinLCARSDisplayMenu::cSkinLCARSDisplayMenu(void)
ys03 = ys04 - Gap;
ys05 = yb15;
+ // The item area (just to have them initialized, actual setting will be done in SetMenuCategory():
+
+ xi00 = 0;
+ xi01 = 0;
+ xi02 = 0;
+ xi03 = 1;
+ yi00 = 0;
+ yi01 = 1;
+
// The color buttons in submenus:
xb00 = xa06;
xb15 = xa07;