summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-05-08 14:10:04 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2005-05-08 14:10:04 +0200
commit22bb343f120dba244fc2f5ea42009a8c27948fda (patch)
treeccf86674645b9a98baf29973c8b71cf4e049ad0f
parentd0be04aed56b0e8d2117e193d7f2b4e5830b1497 (diff)
downloadvdr-1.3.24.tar.gz
vdr-1.3.24.tar.bz2
Fixed a wrong inheritance in libsi's SubtitlingDescriptor::Subtitling1.3.24
-rw-r--r--CONTRIBUTORS1
-rw-r--r--HISTORY2
-rw-r--r--libsi/descriptor.h4
3 files changed, 5 insertions, 2 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index a2149099..cc5bdb44 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -1168,6 +1168,7 @@ Marco Schlüßler <marco@lordzodiac.de>
for fixing handling transparent areas in cDvbSpuBitmap
for fixing a bug in libsi's SubtitlingDescriptor::getLength()
for removing scaling coordinates in letterbox mode from cDvbSpu
+ for fixing a wrong inheritance in libsi's SubtitlingDescriptor::Subtitling
Jürgen Schmitz <j.schmitz@web.de>
for reporting a bug in displaying the current channel when switching via the SVDRP
diff --git a/HISTORY b/HISTORY
index 625a9c21..83e2bfb6 100644
--- a/HISTORY
+++ b/HISTORY
@@ -3510,3 +3510,5 @@ Video Disk Recorder Revision History
- Recordings now avoid zero sized video data files (thanks to Wolfgang Fitz).
- Some rearrangements in cDvbPlayer::Action() to avoid lockups on NPTL systems
(thanks to Reinhard Nissl).
+- Fixed a wrong inheritance in libsi's SubtitlingDescriptor::Subtitling (thanks to
+ Marco Schlüßler).
diff --git a/libsi/descriptor.h b/libsi/descriptor.h
index d17921c2..73fd1059 100644
--- a/libsi/descriptor.h
+++ b/libsi/descriptor.h
@@ -6,7 +6,7 @@
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
- * $Id: descriptor.h 1.11 2005/05/06 08:57:53 kls Exp $
+ * $Id: descriptor.h 1.12 2005/05/08 14:08:19 kls Exp $
* *
***************************************************************************/
@@ -283,7 +283,7 @@ private:
class SubtitlingDescriptor : public Descriptor {
public:
- class Subtitling : public Descriptor {
+ class Subtitling : public LoopElement {
public:
char languageCode[4];
int getSubtitlingType() const;