summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-11-10 16:07:58 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2002-11-10 16:07:58 +0100
commitc05b788debf46d018aa3383c3017f89ba4165e63 (patch)
treeb6a55ead0949d304c8dc97bcbe441269918999c5
parent9fee2b67abb2594c5db2ca9f66525cb09e7b5cc7 (diff)
downloadvdr-c05b788debf46d018aa3383c3017f89ba4165e63.tar.gz
vdr-c05b788debf46d018aa3383c3017f89ba4165e63.tar.bz2
Fixed a compiler warning regarding cMenuChannels::Del() and MenuTimers::Del()1.1.16
-rw-r--r--HISTORY2
-rw-r--r--menu.c14
2 files changed, 9 insertions, 7 deletions
diff --git a/HISTORY b/HISTORY
index 07741159..e0a5f119 100644
--- a/HISTORY
+++ b/HISTORY
@@ -1765,3 +1765,5 @@ Video Disk Recorder Revision History
to handle cases where the duration of an event is set wrongly and would last beyond
the start time of the next event. Besides, the change in 1.1.10 broke handling EPG
data for NVOD channels.
+- Fixed a compiler warning regarding cMenuChannels::Del() and MenuTimers::Del() hiding
+ the base class virtual functions.
diff --git a/menu.c b/menu.c
index 6b773a53..2e29b02c 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.223 2002/11/10 12:32:42 kls Exp $
+ * $Id: menu.c 1.224 2002/11/10 16:05:15 kls Exp $
*/
#include "menu.h"
@@ -669,7 +669,7 @@ protected:
eOSState Switch(void);
eOSState Edit(void);
eOSState New(void);
- eOSState Del(void);
+ eOSState Delete(void);
virtual void Move(int From, int To);
public:
cMenuChannels(void);
@@ -726,7 +726,7 @@ eOSState cMenuChannels::New(void)
return AddSubMenu(new cMenuEditChannel(Channels.Get(Current()), true));
}
-eOSState cMenuChannels::Del(void)
+eOSState cMenuChannels::Delete(void)
{
if (Count() > 0) {
int Index = Current();
@@ -778,7 +778,7 @@ eOSState cMenuChannels::ProcessKey(eKeys Key)
case kOk: return Switch();
case kRed: return Edit();
case kGreen: return New();
- case kYellow: return Del();
+ case kYellow: return Delete();
case kBlue: Mark(); break;
default: break;
}
@@ -945,7 +945,7 @@ class cMenuTimers : public cOsdMenu {
private:
eOSState Edit(void);
eOSState New(void);
- eOSState Del(void);
+ eOSState Delete(void);
eOSState OnOff(void);
virtual void Move(int From, int To);
eOSState Summary(void);
@@ -1012,7 +1012,7 @@ eOSState cMenuTimers::New(void)
return AddSubMenu(new cMenuEditTimer(timer->Index(), true));
}
-eOSState cMenuTimers::Del(void)
+eOSState cMenuTimers::Delete(void)
{
// Check if this timer is active:
cTimer *ti = CurrentTimer();
@@ -1061,7 +1061,7 @@ eOSState cMenuTimers::ProcessKey(eKeys Key)
case kOk: return Summary();
case kRed: return Edit();
case kGreen: return New();
- case kYellow: return Del();
+ case kYellow: return Delete();
case kBlue: if (Setup.SortTimers)
OnOff();
else