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

coverity#708616 Uninitialized scalar field

Change-Id: Ic63f010b0e5d4f0d74c79e16673e3a3fde435e10
üst dbe1fd4c
...@@ -1202,7 +1202,17 @@ void MetaTextArrayAction::Read( SvStream& rIStm, ImplMetaReadData* pData ) ...@@ -1202,7 +1202,17 @@ void MetaTextArrayAction::Read( SvStream& rIStm, ImplMetaReadData* pData )
} }
} }
IMPL_META_ACTION( StretchText, META_STRETCHTEXT_ACTION ) MetaStretchTextAction::MetaStretchTextAction() :
MetaAction ( META_STRETCHTEXT_ACTION ),
mnWidth ( 0 ),
mnIndex ( 0 ),
mnLen ( 0 )
{
}
MetaStretchTextAction::~MetaStretchTextAction()
{
}
MetaStretchTextAction::MetaStretchTextAction( const Point& rPt, sal_uInt32 nWidth, MetaStretchTextAction::MetaStretchTextAction( const Point& rPt, sal_uInt32 nWidth,
const OUString& rStr, const OUString& rStr,
......
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