coverity#707858 Uninitialized scalar field

Change-Id: I098842dcf6bbee41d3ef9d2b17bcb94e2cc65bf6
This commit is contained in:
Caolán McNamara
2014-04-23 12:59:46 +01:00
parent ac3b825a3c
commit c91e07e45b
2 changed files with 2 additions and 4 deletions

View File

@@ -1642,7 +1642,8 @@ SVGActionWriter::SVGActionWriter( SVGExport& rExport, SVGFontExport& rFontExport
mpContext( NULL ),
maTextWriter( rExport ),
mnInnerMtfCount( 0 ),
mbClipAttrChanged( false )
mbClipAttrChanged( false ),
mbIsPlacehlolderShape( false )
{
mpVDev = new VirtualDevice;
mpVDev->EnableOutput( false );

View File

@@ -317,9 +317,6 @@ private:
VirtualDevice* mpVDev;
MapMode maTargetMapMode;
sal_uInt32 mnInnerMtfCount;
bool mbDestroyVDev;
bool mbPaintAttrChanged;
bool mbFontAttrChanged;
bool mbClipAttrChanged;
bool mbIsPlacehlolderShape;