Removed leftover cMenuRecordings::SetPath()

This commit is contained in:
Klaus Schmidinger 2024-06-25 19:00:06 +02:00
parent 32b11e1a53
commit 2b495e0f87
3 changed files with 4 additions and 9 deletions

View File

@ -9919,7 +9919,7 @@ Video Disk Recorder Revision History
- A device is now always kept occupied if a timer is in VPS margin or needs the
transponder (thanks to Markus Ehrnsperger).
2024-06-21:
2024-06-24:
- Updated the Italian OSD texts (thanks to Diego Pierotto).
- Fixed a possible access of a deleted object in the EIT scanner.
@ -9929,3 +9929,4 @@ Video Disk Recorder Revision History
- Added an EPG bugfix for broadcasters who put literal "\n" strings in their EPG.
Note that the string version of strreplace() has been modified, so that it
replaces all occurrences of the search string, not just the first one.
- Removed leftover cMenuRecordings::SetPath().

7
menu.c
View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: menu.c 5.13 2024/06/13 09:31:11 kls Exp $
* $Id: menu.c 5.14 2024/06/25 19:00:06 kls Exp $
*/
#include "menu.h"
@ -3161,11 +3161,6 @@ void cMenuRecordings::Set(bool Refresh)
}
}
void cMenuRecordings::SetPath(const char *Path)
{
path = Path;
}
void cMenuRecordings::SetRecording(const char *FileName)
{
fileName = FileName;

3
menu.h
View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: menu.h 5.1 2020/12/26 15:49:01 kls Exp $
* $Id: menu.h 5.2 2024/06/25 19:00:06 kls Exp $
*/
#ifndef __MENU_H
@ -231,7 +231,6 @@ public:
cMenuRecordings(const char *Base = NULL, int Level = 0, bool OpenSubMenus = false, const cRecordingFilter *Filter = NULL);
~cMenuRecordings();
virtual eOSState ProcessKey(eKeys Key);
static void SetPath(const char *Path);
static void SetRecording(const char *FileName);
};