Added missing 'virtual'

This commit is contained in:
Klaus Schmidinger 2015-04-28 09:26:02 +02:00
parent d14adc1e68
commit b6af7a9cf9
2 changed files with 4 additions and 4 deletions

View File

@ -6,7 +6,7 @@
*
* Original author: Marco Schluessler <marco@lordzodiac.de>
*
* $Id: dvbsubtitle.h 3.2 2015/01/14 10:01:48 kls Exp $
* $Id: dvbsubtitle.h 4.1 2015/04/28 09:25:57 kls Exp $
*/
#ifndef __DVBSUBTITLE_H
@ -48,7 +48,7 @@ private:
public:
cDvbSubtitleConverter(void);
virtual ~cDvbSubtitleConverter();
void Action(void);
virtual void Action(void);
void Reset(void);
void Freeze(bool Status) { frozen = Status; }
int ConvertFragments(const uchar *Data, int Length); // for legacy PES recordings

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: recording.h 4.1 2015/04/11 12:01:59 kls Exp $
* $Id: recording.h 4.2 2015/04/28 09:26:02 kls Exp $
*/
#ifndef __RECORDING_H
@ -227,7 +227,7 @@ private:
void Refresh(bool Foreground = false);
bool ScanVideoDir(const char *DirName, bool Foreground = false, int LinkLevel = 0, int DirLevel = 0);
protected:
void Action(void);
virtual void Action(void);
public:
cRecordings(bool Deleted = false);
virtual ~cRecordings();