summaryrefslogtreecommitdiff
path: root/libsi
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-01-05 14:54:55 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2004-01-05 14:54:55 +0100
commita8482ae3ff3fdd4d971ece737fb95d45761b4851 (patch)
tree4c32b69aa86702691feb805a221582a22fc458fa /libsi
parent2bf718b62f051c0f563fa8ad1d95351b68c5315b (diff)
downloadvdr-a8482ae3ff3fdd4d971ece737fb95d45761b4851.tar.gz
vdr-a8482ae3ff3fdd4d971ece737fb95d45761b4851.tar.bz2
Fixed NumberedSection::moreThanOneSection()
Diffstat (limited to 'libsi')
-rw-r--r--libsi/si.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libsi/si.h b/libsi/si.h
index 25fe1037..85f368ea 100644
--- a/libsi/si.h
+++ b/libsi/si.h
@@ -6,7 +6,7 @@
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
- * $Id: si.h 1.3 2003/12/25 13:30:56 kls Exp $
+ * $Id: si.h 1.4 2004/01/05 14:54:55 kls Exp $
* *
***************************************************************************/
@@ -207,7 +207,7 @@ public:
int getVersionNumber() const;
int getSectionNumber() const;
int getLastSectionNumber() const;
- bool moreThanOneSection() const { return getLastSectionNumber()>1; }
+ bool moreThanOneSection() const { return getLastSectionNumber()>0; }
};
class VariableLengthPart : public Object {