Kaydet (Commit) 56a00607 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708605 Uninitialized scalar field

Change-Id: Iaa4b0c4a272a899482b079b1f36f6e3e57721360
üst 8f1c5569
...@@ -944,7 +944,16 @@ void MetaPolyPolygonAction::Read( SvStream& rIStm, ImplMetaReadData* ) ...@@ -944,7 +944,16 @@ void MetaPolyPolygonAction::Read( SvStream& rIStm, ImplMetaReadData* )
} }
} }
IMPL_META_ACTION( Text, META_TEXT_ACTION ) MetaTextAction::MetaTextAction() :
MetaAction ( META_TEXT_ACTION ),
mnIndex ( 0 ),
mnLen ( 0 )
{
}
MetaTextAction::~MetaTextAction()
{
}
MetaTextAction::MetaTextAction( const Point& rPt, const OUString& rStr, MetaTextAction::MetaTextAction( const Point& rPt, const OUString& rStr,
sal_Int32 nIndex, sal_Int32 nLen ) : sal_Int32 nIndex, sal_Int32 nLen ) :
......
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