coverity#738816 Uninitialized scalar field
Change-Id: I4d4ec5391321879746a833b72de211e2b05056b0
This commit is contained in:
@@ -310,12 +310,13 @@ ShapeExport& PowerPointShapeExport::WriteUnknownShape( Reference< XShape > xShap
|
|||||||
}
|
}
|
||||||
|
|
||||||
PowerPointExport::PowerPointExport( const Reference< XComponentContext > & rxCtxt )
|
PowerPointExport::PowerPointExport( const Reference< XComponentContext > & rxCtxt )
|
||||||
: XmlFilterBase( rxCtxt ),
|
: XmlFilterBase(rxCtxt)
|
||||||
PPTWriterBase(),
|
, PPTWriterBase()
|
||||||
mnLayoutFileIdMax( 1 ),
|
, mnLayoutFileIdMax(1)
|
||||||
mnSlideIdMax( 1 << 8 ),
|
, mnSlideIdMax(1 << 8)
|
||||||
mnSlideMasterIdMax( 1U << 31 ),
|
, mnSlideMasterIdMax(1U << 31)
|
||||||
mnAnimationNodeIdMax( 1 )
|
, mnAnimationNodeIdMax(1)
|
||||||
|
, mbCreateNotes(false)
|
||||||
{
|
{
|
||||||
memset( mLayoutInfo, 0, sizeof(mLayoutInfo) );
|
memset( mLayoutInfo, 0, sizeof(mLayoutInfo) );
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user