summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-03-31 14:02:06 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2006-03-31 14:02:06 +0200
commit1b1935de0edce3ca8f30b07893af44b9112db3cc (patch)
treeac998897bece2bed6b4c14a6a13f846592a04c6e
parent359d43076a095d0ad90caab7053392a7488cb418 (diff)
downloadvdr-1b1935de0edce3ca8f30b07893af44b9112db3cc.tar.gz
vdr-1b1935de0edce3ca8f30b07893af44b9112db3cc.tar.bz2
Added a missing "Key$" in skinclassic.c
-rw-r--r--CONTRIBUTORS2
-rw-r--r--HISTORY3
-rw-r--r--skinclassic.c4
3 files changed, 5 insertions, 4 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index 84611a6d..ed374f51 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -970,7 +970,7 @@ Rolf Ahrenberg <rahrenbe@cc.hut.fi>
for suggesting to also set the language codes when setting the audio track descriptions
for reporting a problem in setting the audio language codes in 'Transfer-Mode'
for fixing cReadLine::Read() for lines that end with the infamous "\r\n"
- for adding a missing "Button$" for the Timer button
+ for adding a missing "Button$" for the Timer button and "Key$" in skinclassic.c
Ralf Klueber <ralf.klueber@vodafone.com>
for reporting a bug in cutting a recording if there is only a single editing mark
diff --git a/HISTORY b/HISTORY
index 025cc090..f5073beb 100644
--- a/HISTORY
+++ b/HISTORY
@@ -4460,4 +4460,5 @@ Video Disk Recorder Revision History
- Fixed handling broken PMT records (thanks to Marcel Wiesweg for pointing out how
to detect these).
-- Added a missing "Button$" for the Timer button (thanks to Rolf Ahrenberg).
+- Added a missing "Button$" for the Timer button and "Key$" in skinclassic.c
+ (thanks to Rolf Ahrenberg).
diff --git a/skinclassic.c b/skinclassic.c
index f471b303..0bc96b05 100644
--- a/skinclassic.c
+++ b/skinclassic.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: skinclassic.c 1.14 2006/02/05 14:51:39 kls Exp $
+ * $Id: skinclassic.c 1.15 2006/03/31 13:59:50 kls Exp $
*/
#include "skinclassic.h"
@@ -517,7 +517,7 @@ void cSkinClassicDisplayVolume::SetVolume(int Current, int Total, bool Mute)
const cFont *font = cFont::GetFont(fontOsd);
if (Mute) {
osd->DrawRectangle(0, 0, osd->Width() - 1, osd->Height() - 1, clrTransparent);
- osd->DrawText(0, 0, tr("Mute"), Theme.Color(clrVolumePrompt), Theme.Color(clrBackground), font);
+ osd->DrawText(0, 0, tr("Key$Mute"), Theme.Color(clrVolumePrompt), Theme.Color(clrBackground), font);
}
else {
const char *Prompt = tr("Volume ");