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

coverity#708606 Uninitialized scalar field

Change-Id: I28adcc868faeb51e49132d12b1a930580961c66c
üst 56a00607
......@@ -2878,7 +2878,15 @@ void MetaPopAction::Read( SvStream& rIStm, ImplMetaReadData* )
COMPAT( rIStm );
}
IMPL_META_ACTION( RasterOp, META_RASTEROP_ACTION )
MetaRasterOpAction::MetaRasterOpAction() :
MetaAction ( META_RASTEROP_ACTION ),
meRasterOp ( ROP_OVERPAINT )
{
}
MetaRasterOpAction::~MetaRasterOpAction()
{
}
MetaRasterOpAction::MetaRasterOpAction( RasterOp eRasterOp ) :
MetaAction ( META_RASTEROP_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