[matroska] r780 - trunk/libmatroska/matroska
| Newsgroups | gmane.comp.multimedia.matroska.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: mosu
Date: 2004-09-11 21:42:24 +0400 (Sat, 11 Sep 2004)
New Revision: 780
Modified:
trunk/libmatroska/matroska/KaxChapters.h
Log:
EditionProcessed has a default value (0) according to the specs.
Modified: trunk/libmatroska/matroska/KaxChapters.h
===================================================================
--- trunk/libmatroska/matroska/KaxChapters.h 2004-09-11 13:07:54 UTC (rev 779)
+++ trunk/libmatroska/matroska/KaxChapters.h 2004-09-11 17:42:24 UTC (rev 780)
@@ -103,7 +103,7 @@
class MATROSKA_DLL_API KaxEditionProcessed : public EbmlUInteger {
public:
- KaxEditionProcessed(): EbmlUInteger() {}
+ KaxEditionProcessed(): EbmlUInteger(0) {}
KaxEditionProcessed(const KaxEditionProcessed & ElementToClone) :EbmlUInteger(ElementToClone) {}
static EbmlElement & Create() {return *(new KaxEditionProcessed);}
const EbmlCallbacks & Generic() const {return ClassInfos;}