diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-30 12:35:34 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-30 15:26:09 +0100 |
commit | 9b79e515e73b93601a7771ce6366c4312c07b25a (patch) | |
tree | e2a75fcd720a78e6c2c3bc7a789b92639bba1fe9 /sw/source/ui | |
parent | 4c9879922d0c77ecc79e6e321ecf9df9e7511218 (diff) |
coverity#738904 Uninitialized scalar field
Change-Id: I6b6955036d2bb98b19eafdb273df886708ec6ab3
Diffstat (limited to 'sw/source/ui')
-rw-r--r-- | sw/source/ui/fldui/fldfunc.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/fldui/fldfunc.cxx b/sw/source/ui/fldui/fldfunc.cxx index ab4ea04a282b..400b5005350e 100644 --- a/sw/source/ui/fldui/fldfunc.cxx +++ b/sw/source/ui/fldui/fldfunc.cxx @@ -40,6 +40,7 @@ using namespace ::com::sun::star; SwFldFuncPage::SwFldFuncPage(Window* pParent, const SfxItemSet& rCoreSet) : SwFldPage(pParent, "FldFuncPage", "modules/swriter/ui/fldfuncpage.ui", rCoreSet) + , nOldFormat(0) , bDropDownLBChanged(false) { get(m_pTypeLB, "type"); @@ -86,7 +87,6 @@ SwFldFuncPage::SwFldFuncPage(Window* pParent, const SfxItemSet& rCoreSet) m_pCond1ED->ShowBrackets(false); m_pCond2ED->ShowBrackets(false); - } SwFldFuncPage::~SwFldFuncPage() |