Kaydet (Commit) dbe1fd4c authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708617 Uninitialized scalar field

Change-Id: If4d6963b4f9ccf8683c95eff2ba1bb0f0d10e282
üst 3cb3ca5c
...@@ -2993,7 +2993,15 @@ void MetaRasterOpAction::Read( SvStream& rIStm, ImplMetaReadData* ) ...@@ -2993,7 +2993,15 @@ void MetaRasterOpAction::Read( SvStream& rIStm, ImplMetaReadData* )
rIStm.ReadUInt16( nTmp16 ); meRasterOp = (RasterOp) nTmp16; rIStm.ReadUInt16( nTmp16 ); meRasterOp = (RasterOp) nTmp16;
} }
IMPL_META_ACTION( Transparent, META_TRANSPARENT_ACTION ) MetaTransparentAction::MetaTransparentAction() :
MetaAction ( META_TRANSPARENT_ACTION ),
mnTransPercent ( 0 )
{
}
MetaTransparentAction::~MetaTransparentAction()
{
}
MetaTransparentAction::MetaTransparentAction( const PolyPolygon& rPolyPoly, sal_uInt16 nTransPercent ) : MetaTransparentAction::MetaTransparentAction( const PolyPolygon& rPolyPoly, sal_uInt16 nTransPercent ) :
MetaAction ( META_TRANSPARENT_ACTION ), MetaAction ( META_TRANSPARENT_ACTION ),
......
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