summaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
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 8cce5357..f0586c95 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.210 2002/10/06 09:52:52 kls Exp $
+ * $Id: menu.c 1.211 2002/10/06 10:36:20 kls Exp $
*/
#include "menu.h"
@@ -1605,7 +1605,7 @@ eOSState cMenuRecordings::Rewind(void)
return osContinue;
}
-eOSState cMenuRecordings::Del(void)
+eOSState cMenuRecordings::Delete(void)
{
cMenuRecordingItem *ri = (cMenuRecordingItem *)Get(Current());
if (ri && !ri->IsDirectory()) {
@@ -1664,7 +1664,7 @@ eOSState cMenuRecordings::ProcessKey(eKeys Key)
case kOk:
case kRed: return Play();
case kGreen: return Rewind();
- case kYellow: return Del();
+ case kYellow: return Delete();
case kBlue: return Summary();
default: break;
}