diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-13 12:05:13 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-13 14:03:33 +0000 |
commit | 5e8f7b8c831a0b403d915cf3f16b860eb5975d64 (patch) | |
tree | ee12ecf13896766cadc7f7020c3022e65b4171bc | |
parent | 0947dedf8d15fe18824011a7090297072c7d798b (diff) |
coverity#708508 Uninitialized scalar field
Change-Id: I91551d8ef7d27c6abc81cd59a6866ee5eb93adcb
-rw-r--r-- | sw/source/filter/ww8/ww8par6.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/ww8par6.cxx b/sw/source/filter/ww8/ww8par6.cxx index 339c3194e3a5..e8bb5e44fa82 100644 --- a/sw/source/filter/ww8/ww8par6.cxx +++ b/sw/source/filter/ww8/ww8par6.cxx @@ -752,7 +752,7 @@ void SwWW8ImplReader::HandleLineNumbering(const wwSection &rSection) } wwSection::wwSection(const SwPosition &rPos) : maStart(rPos.nNode), - mpSection(0), mpPage(0), meDir(FRMDIR_HORI_LEFT_TOP), + mpSection(0), mpPage(0), meDir(FRMDIR_HORI_LEFT_TOP), mLinkId(0), nPgWidth(SvxPaperInfo::GetPaperSize(PAPER_A4).Width()), nPgLeft(MM_250), nPgRight(MM_250), mnBorders(0), mbHasFootnote(false) { |