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

coverity#708621 Uninitialized scalar field

Change-Id: If84c36f3bd285b8615d23271ca7dcc380307e04f
üst ddd4b159
......@@ -2577,7 +2577,15 @@ void MetaTextColorAction::Read( SvStream& rIStm, ImplMetaReadData* )
maColor.Read( rIStm, true );
}
IMPL_META_ACTION( TextFillColor, META_TEXTFILLCOLOR_ACTION )
MetaTextFillColorAction::MetaTextFillColorAction() :
MetaAction ( META_TEXTFILLCOLOR_ACTION ),
mbSet ( false )
{
}
MetaTextFillColorAction::~MetaTextFillColorAction()
{
}
MetaTextFillColorAction::MetaTextFillColorAction( const Color& rColor, bool bSet ) :
MetaAction ( META_TEXTFILLCOLOR_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