summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-18 10:09:05 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-18 10:10:02 +0000
commit31bacc9bed54759dbd90e6cddfd430cf35c71556 (patch)
treecb8bed4aaaf7e2e239e23073b8401653bc41efd3 /svtools
parentcdb19b8b00eba8d4e591aa2912a6d3180d71c8c7 (diff)
coverity#984146 Uninitialized scalar field
Change-Id: Ibaeaa95c346547f17b82c687944a8b37c05b9b49
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/contnr/svimpbox.cxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/svtools/source/contnr/svimpbox.cxx b/svtools/source/contnr/svimpbox.cxx
index 6ac1b359bf60..71b26be70f4a 100644
--- a/svtools/source/contnr/svimpbox.cxx
+++ b/svtools/source/contnr/svimpbox.cxx
@@ -44,17 +44,17 @@ Image* SvImpLBox::s_pDefCollapsed = NULL;
Image* SvImpLBox::s_pDefExpanded = NULL;
sal_Int32 SvImpLBox::s_nImageRefCount = 0;
-SvImpLBox::SvImpLBox( SvTreeListBox* pLBView, SvTreeList* pLBTree, WinBits nWinStyle) :
-
- aVerSBar( pLBView, WB_DRAG | WB_VSCROLL ),
- aHorSBar( pLBView, WB_DRAG | WB_HSCROLL ),
- aScrBarBox( pLBView ),
- aOutputSize( 0, 0 ),
- aSelEng( pLBView, (FunctionSet*)0 ),
- aFctSet( this, &aSelEng, pLBView ),
- nExtendedWinBits( 0 ),
- bAreChildrenTransient( true ),
- m_pStringSorter(NULL)
+SvImpLBox::SvImpLBox( SvTreeListBox* pLBView, SvTreeList* pLBTree, WinBits nWinStyle)
+ : aVerSBar(pLBView, WB_DRAG | WB_VSCROLL)
+ , aHorSBar(pLBView, WB_DRAG | WB_HSCROLL)
+ , aScrBarBox(pLBView)
+ , aOutputSize(0, 0)
+ , aSelEng(pLBView, (FunctionSet*)0)
+ , aFctSet(this, &aSelEng, pLBView)
+ , nNextVerVisSize(0)
+ , nExtendedWinBits(0)
+ , bAreChildrenTransient(true)
+ , m_pStringSorter(NULL)
{
osl_atomic_increment(&s_nImageRefCount);
pView = pLBView;