summaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-06-23 09:44:00 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2002-06-23 09:44:00 +0200
commit0bb9a1a77b866b79b73fc71e9863e7da5fc57c56 (patch)
tree69e37ffba78ba7aa1045431f935444f7d5bd31a2 /menu.c
parent359e90b8a7fee368e496b79ab253045b989fa6a5 (diff)
downloadvdr-0bb9a1a77b866b79b73fc71e9863e7da5fc57c56.tar.gz
vdr-0bb9a1a77b866b79b73fc71e9863e7da5fc57c56.tar.bz2
Moved handling of the Menu key entirely into vdr.c
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/menu.c b/menu.c
index 904a630a..338838ec 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.199 2002/06/22 13:36:10 kls Exp $
+ * $Id: menu.c 1.200 2002/06/23 09:09:11 kls Exp $
*/
#include "menu.h"
@@ -1513,7 +1513,6 @@ eOSState cMenuRecordings::ProcessKey(eKeys Key)
case kGreen: return Rewind();
case kYellow: return Del();
case kBlue: return Summary();
- case kMenu: return osEnd;
default: break;
}
}
@@ -2080,7 +2079,6 @@ eOSState cMenuMain::ProcessKey(eKeys Key)
}
break;
default: switch (Key) {
- case kMenu: state = osEnd; break;
case kRed: if (!HasSubMenu())
state = osRecord;
break;
@@ -3062,7 +3060,6 @@ eOSState cReplayControl::ProcessKey(eKeys Key)
displayFrames = DisplayedFrames;
switch (Key) {
// Menu control:
- case kMenu: Hide(); return osMenu; // allow direct switching to menu
case kOk: if (visible && !modeOnly) {
Hide();
DoShowMode = true;