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

coverity#708604 Uninitialized scalar field

Change-Id: I6bd79a84284db6d5f7d16bca202e03b2477a482a
üst 595db7fa
......@@ -2800,7 +2800,15 @@ void MetaFontAction::Read( SvStream& rIStm, ImplMetaReadData* pData )
pData->meActualCharSet = osl_getThreadTextEncoding();
}
IMPL_META_ACTION( Push, META_PUSH_ACTION )
MetaPushAction::MetaPushAction() :
MetaAction ( META_PUSH_ACTION ),
mnFlags ( 0 )
{
}
MetaPushAction::~MetaPushAction()
{
}
MetaPushAction::MetaPushAction( sal_uInt16 nFlags ) :
MetaAction ( META_PUSH_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