summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-04-25 16:04:55 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2006-04-25 16:04:55 +0200
commit754a4de85e7d4cc9363204eda9f2cd2723c2cf25 (patch)
tree85beeb5a49125a39a046f19bfc47d97ae0e448ec
parentbf4f8e0da38b757dae9a8fef4e17cb23094d6e26 (diff)
downloadvdr-754a4de85e7d4cc9363204eda9f2cd2723c2cf25.tar.gz
vdr-754a4de85e7d4cc9363204eda9f2cd2723c2cf25.tar.bz2
Fixed entering '0' in a cMenuEditIntItem
-rw-r--r--CONTRIBUTORS1
-rw-r--r--HISTORY1
-rw-r--r--menuitems.c6
3 files changed, 5 insertions, 3 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index 272b280c..9f7d592c 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -439,6 +439,7 @@ Mirko Dölle <mdoelle@linux-user.de>
for reporting a problem with inconsistent channel and timer lists
for making the "Play" key in live viewing mode resume a previous replay session
for suggesting to allow defining key macros for all non-modeless keys
+ for reporting a bug in entering '0' in a cMenuEditIntItem
Michael Rakowski <mrak@gmx.de>
for translating OSD texts to the Polish language
diff --git a/HISTORY b/HISTORY
index f66ec088..3a71bc42 100644
--- a/HISTORY
+++ b/HISTORY
@@ -4656,3 +4656,4 @@ Video Disk Recorder Revision History
Oliver Endriss; thanks also to Udo Richter for a shorter version of the 'sed'
expression).
- Fixed broken APIVERSION extraction line in 'newplugin' (thanks to Oliver Endriss).
+- Fixed entering '0' in a cMenuEditIntItem (reported by Mirko Dölle).
diff --git a/menuitems.c b/menuitems.c
index ef7cccc3..1bca4873 100644
--- a/menuitems.c
+++ b/menuitems.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: menuitems.c 1.43 2006/04/23 11:39:48 kls Exp $
+ * $Id: menuitems.c 1.44 2006/04/25 15:59:02 kls Exp $
*/
#include "menuitems.h"
@@ -80,10 +80,10 @@ eOSState cMenuEditIntItem::ProcessKey(eKeys Key)
case kNone: break;
case k0 ... k9:
if (fresh) {
- *value = 0;
+ newValue = 0;
fresh = false;
}
- newValue = *value * 10 + (Key - k0);
+ newValue = newValue * 10 + (Key - k0);
break;
case kLeft: // TODO might want to increase the delta if repeated quickly?
newValue = *value - 1;