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

coverity#708611 Uninitialized scalar field

Change-Id: I18a0c27257b3419f97b59f14e408036618588516
üst cc43c094
......@@ -2604,7 +2604,15 @@ void MetaTextFillColorAction::Read( SvStream& rIStm, ImplMetaReadData* )
rIStm.ReadCharAsBool( mbSet );
}
IMPL_META_ACTION( TextLineColor, META_TEXTLINECOLOR_ACTION )
MetaTextLineColorAction::MetaTextLineColorAction() :
MetaAction ( META_TEXTLINECOLOR_ACTION ),
mbSet ( false )
{
}
MetaTextLineColorAction::~MetaTextLineColorAction()
{
}
MetaTextLineColorAction::MetaTextLineColorAction( const Color& rColor, bool bSet ) :
MetaAction ( META_TEXTLINECOLOR_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