diff options
-rw-r--r-- | CONTRIBUTORS | 1 | ||||
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | device.h | 4 |
3 files changed, 4 insertions, 2 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 3afb3939..260cb592 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -45,6 +45,7 @@ Martin Hammerschmid <martin@hammerschmid.com> for implementing pege up/down with the "Left" and "Right" keys for detecting a deadlock when switching channels via Schedule/Now|Next/Switch for adding a missing #include to ringbuffer.c + for adding a missing 'public' keyword in device.h Bastian Guse <bastian@nocopy.de> for writing the FORMATS entry for timers.conf @@ -1515,3 +1515,4 @@ Video Disk Recorder Revision History This is the diff for the 'setup' example that comes with VDR, so your line numbers may be different. +- Added a missing 'public' keyword in device.h (thanks to Martin Hammerschmid). @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * 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 @@ -50,7 +50,7 @@ class cPlayer; class cReceiver; class cSpuDecoder; -class cDevice : cThread { +class cDevice : public cThread { private: static int numDevices; static int useDevice; |