summaryrefslogtreecommitdiff
path: root/osd.h
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 /osd.h
parent359e90b8a7fee368e496b79ab253045b989fa6a5 (diff)
downloadvdr-0bb9a1a77b866b79b73fc71e9863e7da5fc57c56.tar.gz
vdr-0bb9a1a77b866b79b73fc71e9863e7da5fc57c56.tar.bz2
Moved handling of the Menu key entirely into vdr.c
Diffstat (limited to 'osd.h')
-rw-r--r--osd.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/osd.h b/osd.h
index 88c986c8..c0621577 100644
--- a/osd.h
+++ b/osd.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: osd.h 1.31 2002/05/18 14:00:15 kls Exp $
+ * $Id: osd.h 1.32 2002/06/23 09:13:17 kls Exp $
*/
#ifndef __OSD_H
@@ -22,7 +22,6 @@
#define MAXOSDITEMS (Setup.OSDheight - 4)
enum eOSState { osUnknown,
- osMenu,
osContinue,
osSchedule,
osChannels,
@@ -115,7 +114,7 @@ public:
int Width(void) { return Interface->Width(); }
int Height(void) { return Interface->Height(); }
bool NeedsFastResponse(void) { return needsFastResponse; }
- virtual eOSState ProcessKey(eKeys Key) = 0;
+ virtual eOSState ProcessKey(eKeys Key) { return osUnknown; }
};
class cOsdMenu : public cOsdObject, public cList<cOsdItem> {