Added a missing 'public' keyword

This commit is contained in:
Klaus Schmidinger 2002-09-21 09:14:56 +02:00
parent d39c72d088
commit 95685c842a
3 changed files with 4 additions and 2 deletions

View File

@ -45,6 +45,7 @@ Martin Hammerschmid <martin@hammerschmid.com>
for implementing pege up/down with the "Left" and "Right" keys for implementing pege up/down with the "Left" and "Right" keys
for detecting a deadlock when switching channels via Schedule/Now|Next/Switch for detecting a deadlock when switching channels via Schedule/Now|Next/Switch
for adding a missing #include to ringbuffer.c for adding a missing #include to ringbuffer.c
for adding a missing 'public' keyword in device.h
Bastian Guse <bastian@nocopy.de> Bastian Guse <bastian@nocopy.de>
for writing the FORMATS entry for timers.conf for writing the FORMATS entry for timers.conf

View File

@ -1515,3 +1515,4 @@ Video Disk Recorder Revision History
This is the diff for the 'setup' example that comes with VDR, so your line This is the diff for the 'setup' example that comes with VDR, so your line
numbers may be different. numbers may be different.
- Added a missing 'public' keyword in device.h (thanks to Martin Hammerschmid).

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: device.h 1.18 2002/09/15 11:05:41 kls Exp $ * $Id: device.h 1.19 2002/09/21 09:14:08 kls Exp $
*/ */
#ifndef __DEVICE_H #ifndef __DEVICE_H
@ -50,7 +50,7 @@ class cPlayer;
class cReceiver; class cReceiver;
class cSpuDecoder; class cSpuDecoder;
class cDevice : cThread { class cDevice : public cThread {
private: private:
static int numDevices; static int numDevices;
static int useDevice; static int useDevice;