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

coverity#708481 Uninitialized scalar field

Change-Id: I725a9c6a4d41502ffce1403dbe3f3822b93ddb4c
üst 72b0a06f
......@@ -229,8 +229,16 @@ SwHTMLTxtCollOutputInfo::~SwHTMLTxtCollOutputInfo()
SwHTMLFmtInfo::SwHTMLFmtInfo( const SwFmt *pF, SwDoc *pDoc, SwDoc *pTemplate,
sal_Bool bOutStyles,
LanguageType eDfltLang,
sal_uInt16 nCSS1Script, sal_Bool bHardDrop ) :
pFmt( pF ), pRefFmt(0), pItemSet( 0 ), bScriptDependent( false )
sal_uInt16 nCSS1Script, sal_Bool bHardDrop )
: pFmt(pF)
, pRefFmt(0)
, pItemSet(0)
, nLeftMargin(0)
, nRightMargin(0)
, nFirstLineIndent(0)
, nTopMargin(0)
, nBottomMargin(0)
, bScriptDependent( false )
{
sal_uInt16 nRefPoolId = 0;
// Den Selektor des Formats holen
......
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