diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-10-06 10:40:27 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-10-06 10:40:27 +0200 |
commit | b7d3273d9251a47b056cafc9b44d3ac360328124 (patch) | |
tree | 308d5015753777041321751a23990e25424e784b /menu.c | |
parent | 53407825f9b51ee9b3cf01a0cc8e14732f2e2d8c (diff) | |
download | vdr-b7d3273d9251a47b056cafc9b44d3ac360328124.tar.gz vdr-b7d3273d9251a47b056cafc9b44d3ac360328124.tar.bz2 |
Changed cMenuRecordings::Del() to cMenuRecordings::Delete() to avoid a warning in gcc-3.2
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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; } |