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

coverity#708618 Uninitialized scalar field

Change-Id: Ie48d5a4628a934036632d780c40e9c93a07ab726
üst 1b13dd4d
......@@ -3486,7 +3486,15 @@ void MetaLayoutModeAction::Read( SvStream& rIStm, ImplMetaReadData* )
rIStm.ReadUInt32( mnLayoutMode );
}
IMPL_META_ACTION( TextLanguage, META_TEXTLANGUAGE_ACTION )
MetaTextLanguageAction::MetaTextLanguageAction() :
MetaAction ( META_TEXTLANGUAGE_ACTION ),
meTextLanguage( LANGUAGE_DONTKNOW )
{
}
MetaTextLanguageAction::~MetaTextLanguageAction()
{
}
MetaTextLanguageAction::MetaTextLanguageAction( LanguageType eTextLanguage ) :
MetaAction ( META_TEXTLANGUAGE_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