[Libreoffice-commits] core.git: sw/source
Caolán McNamara
caolanm at redhat.com
Wed Feb 22 11:06:28 UTC 2017
sw/source/filter/html/svxcss1.cxx | 4 ++++
1 file changed, 4 insertions(+)
New commits:
commit d171fbed9d17dda5fed22d313390b9d31c3b684d
Author: Caolán McNamara <caolanm at redhat.com>
Date: Wed Feb 22 11:04:38 2017 +0000
coverity#1019413 Uninitialized scalar field
Change-Id: I1d902ffddee97a4598772f8044fddf4316e2a27a
diff --git a/sw/source/filter/html/svxcss1.cxx b/sw/source/filter/html/svxcss1.cxx
index 9841091..b60e5fa 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 ),
More information about the Libreoffice-commits
mailing list