diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-05-08 14:10:04 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-05-08 14:10:04 +0200 |
commit | 22bb343f120dba244fc2f5ea42009a8c27948fda (patch) | |
tree | ccf86674645b9a98baf29973c8b71cf4e049ad0f /libsi/descriptor.h | |
parent | d0be04aed56b0e8d2117e193d7f2b4e5830b1497 (diff) | |
download | vdr-22bb343f120dba244fc2f5ea42009a8c27948fda.tar.gz vdr-22bb343f120dba244fc2f5ea42009a8c27948fda.tar.bz2 |
Fixed a wrong inheritance in libsi's SubtitlingDescriptor::Subtitling1.3.24
Diffstat (limited to 'libsi/descriptor.h')
-rw-r--r-- | libsi/descriptor.h | 4 |
1 files changed, 2 insertions, 2 deletions
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; |