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

coverity#708610 Uninitialized scalar field

Change-Id: I90a5c9868af3905737ec0c9d34762a295ac90e5e
üst 57518127
......@@ -2471,7 +2471,15 @@ void MetaLineColorAction::Read( SvStream& rIStm, ImplMetaReadData* )
rIStm.ReadCharAsBool( mbSet );
}
IMPL_META_ACTION( FillColor, META_FILLCOLOR_ACTION )
MetaFillColorAction::MetaFillColorAction() :
MetaAction ( META_FILLCOLOR_ACTION ),
mbSet ( false )
{
}
MetaFillColorAction::~MetaFillColorAction()
{
}
MetaFillColorAction::MetaFillColorAction( const Color& rColor, bool bSet ) :
MetaAction ( META_FILLCOLOR_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