summaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2001-08-05 12:47:14 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2001-08-05 12:47:14 +0200
commit8c1fc6560d2ef79565c89f1f5b6223e2ee829a2e (patch)
tree8e0c42d6c67a3efd677cc02d9df331dc4a121436 /menu.c
parentae1560819792427d08a7cb51f19b6dccaa850fa2 (diff)
downloadvdr-8c1fc6560d2ef79565c89f1f5b6223e2ee829a2e.tar.gz
vdr-8c1fc6560d2ef79565c89f1f5b6223e2ee829a2e.tar.bz2
Removed hotkeys from 'Stop...' options
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/menu.c b/menu.c
index 6f8c5997..b8d5f9d2 100644
--- a/menu.c
+++ b/menu.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: menu.c 1.92 2001/08/05 10:33:54 kls Exp $
+ * $Id: menu.c 1.93 2001/08/05 12:47:14 kls Exp $
*/
#include "menu.h"
@@ -1799,12 +1799,12 @@ cMenuMain::cMenuMain(bool Replaying)
if (Commands.Count())
Add(new cOsdItem(hk(tr("Commands")), osCommands));
if (Replaying)
- Add(new cOsdItem(hk(tr(" Stop replaying")), osStopReplay));
+ Add(new cOsdItem(tr(" Stop replaying"), osStopReplay));
const char *s = NULL;
while ((s = cRecordControls::GetInstantId(s)) != NULL) {
char *buffer = NULL;
asprintf(&buffer, "%s%s", STOP_RECORDING, s);
- Add(new cOsdItem(hk(buffer), osStopRecord));
+ Add(new cOsdItem(buffer, osStopRecord));
delete buffer;
}
if (cVideoCutter::Active())