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

coverity#708607 Uninitialized scalar field

Change-Id: I8e766cd7e6288985e6fdb12b0a9ff72f5859e5ce
üst d9dece90
...@@ -3117,7 +3117,15 @@ void MetaEPSAction::Read( SvStream& rIStm, ImplMetaReadData* ) ...@@ -3117,7 +3117,15 @@ void MetaEPSAction::Read( SvStream& rIStm, ImplMetaReadData* )
ReadGDIMetaFile( rIStm, maSubst ); ReadGDIMetaFile( rIStm, maSubst );
} }
IMPL_META_ACTION( RefPoint, META_REFPOINT_ACTION ) MetaRefPointAction::MetaRefPointAction() :
MetaAction ( META_REFPOINT_ACTION ),
mbSet ( false )
{
}
MetaRefPointAction::~MetaRefPointAction()
{
}
MetaRefPointAction::MetaRefPointAction( const Point& rRefPoint, bool bSet ) : MetaRefPointAction::MetaRefPointAction( const Point& rRefPoint, bool bSet ) :
MetaAction ( META_REFPOINT_ACTION ), MetaAction ( META_REFPOINT_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