diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-09-14 11:05:44 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-09-14 11:05:44 +0200 |
commit | e45b9d0be31116209ce6d90ff77834d9b13c6b9b (patch) | |
tree | 4e4d7002d44f0afc05465c673976267467060db0 /osd.h | |
parent | 903148b5ad4315c857cbb55060420e81cd1ccf96 (diff) | |
download | vdr-e45b9d0be31116209ce6d90ff77834d9b13c6b9b.tar.gz vdr-e45b9d0be31116209ce6d90ff77834d9b13c6b9b.tar.bz2 |
Made cOsdMenu::Display() virtual
Diffstat (limited to 'osd.h')
-rw-r--r-- | osd.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: osd.h 1.39 2003/04/21 13:40:45 kls Exp $ + * $Id: osd.h 1.40 2003/09/14 10:59:22 kls Exp $ */ #ifndef __OSD_H @@ -165,7 +165,7 @@ public: int Current(void) { return current; } void Add(cOsdItem *Item, bool Current = false, cOsdItem *After = NULL); void Ins(cOsdItem *Item, bool Current = false, cOsdItem *Before = NULL); - void Display(void); + virtual void Display(void); virtual eOSState ProcessKey(eKeys Key); }; |