diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-09-05 11:56:24 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-09-05 12:01:13 +0100 |
commit | b5dddbbb41f7c4c7d9b89caaec296f0133589e5b (patch) | |
tree | 44e50483201c487c85875a88013dfb64c5e84445 | |
parent | e04f1a6fcea01872ac7d7e4a2843dcb8f47dfcd9 (diff) |
CID#1079350 Uninitialized scalar field
Change-Id: I0a3bbb5a962b33aad1c9ef2c5fa751ec15d79dc9
-rw-r--r-- | sw/source/core/txtnode/swfont.cxx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sw/source/core/txtnode/swfont.cxx b/sw/source/core/txtnode/swfont.cxx index 6f08a455fc08..be6a52ef2f18 100644 --- a/sw/source/core/txtnode/swfont.cxx +++ b/sw/source/core/txtnode/swfont.cxx @@ -714,7 +714,19 @@ SwFont::SwFont() , m_aShadowColor(COL_TRANSPARENT) , m_nShadowWidth(0) , m_aShadowLocation(SVX_SHADOW_NONE) + , nToxCnt(0) + , nRefCnt(0) + , m_nMetaCount(0) , nActual(SW_LATIN) + , bNoHyph(false) + , bBlink(false) + , bPaintBlank(false) + , bFntChg(false) + , bOrgChg(false) + , bURL(false) + , bPaintWrong(false) + , bGreyWave(false) + , bNoColReplace(false) { } |