From d171fbed9d17dda5fed22d313390b9d31c3b684d Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 22 Feb 2017 11:04:38 +0000 Subject: coverity#1019413 Uninitialized scalar field Change-Id: I1d902ffddee97a4598772f8044fddf4316e2a27a --- sw/source/filter/html/svxcss1.cxx | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'sw/source') diff --git a/sw/source/filter/html/svxcss1.cxx b/sw/source/filter/html/svxcss1.cxx index 98410918b5b0..b60e5fa67927 100644 --- a/sw/source/filter/html/svxcss1.cxx +++ b/sw/source/filter/html/svxcss1.cxx @@ -375,12 +375,16 @@ SvxCSS1PropertyInfo::SvxCSS1PropertyInfo( const SvxCSS1PropertyInfo& rProp ) : m_bLeftMargin( rProp.m_bLeftMargin ), m_bRightMargin( rProp.m_bRightMargin ), m_bTextIndent( rProp.m_bTextIndent ), + m_bNumbering ( rProp.m_bNumbering ), + m_bBullet ( rProp.m_bBullet ), m_eFloat( rProp.m_eFloat ), m_ePosition( rProp.m_ePosition ), m_nTopBorderDistance( rProp.m_nTopBorderDistance ), m_nBottomBorderDistance( rProp.m_nBottomBorderDistance ), m_nLeftBorderDistance( rProp.m_nLeftBorderDistance ), m_nRightBorderDistance( rProp.m_nRightBorderDistance ), + m_nNumberingType ( rProp.m_nNumberingType ), + m_cBulletChar( rProp.m_cBulletChar ), m_nColumnCount( rProp.m_nColumnCount ), m_nLeft( rProp.m_nLeft ), m_nTop( rProp.m_nTop ), -- cgit