coverity#707839 Uninitialized scalar field

Change-Id: Ib9cf1d3da0cf03b6aa0aaa7b5206803730115cc8
This commit is contained in:
Caolán McNamara
2014-04-11 21:16:23 +01:00
parent dfc39fcdbf
commit eacfa63670

View File

@@ -199,10 +199,11 @@ void Impl_OlePres::Write( SvStream & rStm )
rStm.Seek( nEndPos );
}
DffPropertyReader::DffPropertyReader( const SvxMSDffManager& rMan ) :
rManager( rMan ),
pDefaultPropSet( NULL ),
mbRotateGranientFillWithAngle ( false )
DffPropertyReader::DffPropertyReader( const SvxMSDffManager& rMan )
: rManager(rMan)
, pDefaultPropSet(NULL)
, mnFix16Angle(0)
, mbRotateGranientFillWithAngle(false)
{
InitializePropSet( DFF_msofbtOPT );
}