Kaydet (Commit) 6891ed67 authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

coverity#984093 Uninitialized scalar field

Change-Id: I60233fdc8d03e2d0dae03eaa8f3ef47ad8bdf43e
üst b8d8bb8e
......@@ -91,11 +91,13 @@ static const char aOOOAttrNumberingType[] = NSPREFIX "numbering-type";
static sal_Char const XML_UNO_NAME_NRULE_NUMBERINGTYPE[] = "NumberingType";
static sal_Char const XML_UNO_NAME_NRULE_BULLET_CHAR[] = "BulletChar";
SVGAttributeWriter::SVGAttributeWriter( SVGExport& rExport, SVGFontExport& rFontExport ) :
mrExport( rExport ),
mrFontExport( rFontExport ),
mpElemFont( NULL ),
mpElemPaint( NULL )
SVGAttributeWriter::SVGAttributeWriter( SVGExport& rExport, SVGFontExport& rFontExport )
: mrExport( rExport )
, mrFontExport( rFontExport )
, mpElemFont( NULL )
, mpElemPaint( NULL )
, maLineJoin(basegfx::B2DLINEJOIN_NONE)
, maLineCap(css::drawing::LineCap_BUTT)
{
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment