summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-02-22 11:04:38 +0000
committerCaolán McNamara <caolanm@redhat.com>2017-02-22 11:06:00 +0000
commitd171fbed9d17dda5fed22d313390b9d31c3b684d (patch)
treeca90bd08be0aedecd56f475e0fcd8fbf55b66161
parentb514a0ecdf368e39033c53f312bee7c5e86939e0 (diff)
coverity#1019413 Uninitialized scalar field
Change-Id: I1d902ffddee97a4598772f8044fddf4316e2a27a
-rw-r--r--sw/source/filter/html/svxcss1.cxx4
1 files changed, 4 insertions, 0 deletions
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 ),