diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-29 11:05:59 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-29 11:39:31 +0100 |
commit | 4a1bcd90b93f6ceb78c9181f2ebbd0f47d71eeb4 (patch) | |
tree | 8e1b26d3614469d536a1f263049eaa144dd06145 | |
parent | b4464c79afa19fba75aad5fa5c2c5ba67c6f657d (diff) |
coverity#1210194 Uninitialized scalar field
Change-Id: I6572f70c1c0eaa149759189c6b196281e74e218d
-rw-r--r-- | sc/source/ui/dbgui/consdlg.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/source/ui/dbgui/consdlg.cxx b/sc/source/ui/dbgui/consdlg.cxx index 8b9e99b0caf0..0f8e3281df35 100644 --- a/sc/source/ui/dbgui/consdlg.cxx +++ b/sc/source/ui/dbgui/consdlg.cxx @@ -78,7 +78,8 @@ ScConsolidateDlg::ScConsolidateDlg( SfxBindings* pB, SfxChildWindow* pCW, Window pRangeUtil ( new ScRangeUtil ), pAreaData ( NULL ), nAreaDataCount ( 0 ), - nWhichCons ( rArgSet.GetPool()->GetWhich( SID_CONSOLIDATE ) ) + nWhichCons ( rArgSet.GetPool()->GetWhich( SID_CONSOLIDATE ) ), + bDlgLostFocus ( false ) { get(pLbFunc,"func"); get(pLbConsAreas,"consareas"); |