coverity#738816 Uninitialized scalar field

Change-Id: I4d4ec5391321879746a833b72de211e2b05056b0
This commit is contained in:
Caolán McNamara
2014-04-04 14:33:48 +01:00
parent e28a1f3b16
commit 64e291376f

View File

@@ -310,12 +310,13 @@ ShapeExport& PowerPointShapeExport::WriteUnknownShape( Reference< XShape > xShap
}
PowerPointExport::PowerPointExport( const Reference< XComponentContext > & rxCtxt )
: XmlFilterBase( rxCtxt ),
PPTWriterBase(),
mnLayoutFileIdMax( 1 ),
mnSlideIdMax( 1 << 8 ),
mnSlideMasterIdMax( 1U << 31 ),
mnAnimationNodeIdMax( 1 )
: XmlFilterBase(rxCtxt)
, PPTWriterBase()
, mnLayoutFileIdMax(1)
, mnSlideIdMax(1 << 8)
, mnSlideMasterIdMax(1U << 31)
, mnAnimationNodeIdMax(1)
, mbCreateNotes(false)
{
memset( mLayoutInfo, 0, sizeof(mLayoutInfo) );
}