mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Added a missing 'public' keyword
This commit is contained in:
parent
d39c72d088
commit
95685c842a
@ -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
|
||||||
|
1
HISTORY
1
HISTORY
@ -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).
|
||||||
|
4
device.h
4
device.h
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user