summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-29 16:59:37 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-29 17:17:52 +0100
commiteaff3d4add99d1e18303f5aeb2cc852fe754baf7 (patch)
treeb655334eb0ee51c51362ccaa70c2401367291461
parentbe6cba5e3cd31fea6bd2130fc10c44239e4c1ed1 (diff)
coverity#1210173 Uninitialized scalar field
Change-Id: I9da96ba05b0fb628ac497304c4e2aa987da0eab8
-rw-r--r--sw/source/ui/fldui/flddinf.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/sw/source/ui/fldui/flddinf.cxx b/sw/source/ui/fldui/flddinf.cxx
index 040a048b9137..58e8035afaff 100644
--- a/sw/source/ui/fldui/flddinf.cxx
+++ b/sw/source/ui/fldui/flddinf.cxx
@@ -51,6 +51,8 @@ SwFldDokInfPage::SwFldDokInfPage(Window* pParent, const SfxItemSet& rCoreSet)
: SwFldPage(pParent, "FldDocInfoPage",
"modules/swriter/ui/flddocinfopage.ui", rCoreSet)
, pSelEntry(0)
+ , nOldSel(0)
+ , nOldFormat(0)
{
get(m_pTypeTLB, "type");
get(m_pSelection, "selectframe");