diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-02 11:02:25 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-02 14:49:01 +0100 |
commit | 76563eb45bc1fb143aa6b2cdfbcd72bb9f95816b (patch) | |
tree | 2983f453c4377ee93c2d17f65f6d26d6a68c8fd6 /cui | |
parent | 205a00d04be2a0a8f64099e6cf17a729c1a76dd5 (diff) |
coverity#1242752 Uninitialized pointer field
Change-Id: I3485a29fe5ce88834b2ef0d30b9c32516befa0ff
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/tabpages/tplneend.cxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/cui/source/tabpages/tplneend.cxx b/cui/source/tabpages/tplneend.cxx index a71ce58192b1..5fed72ee7862 100644 --- a/cui/source/tabpages/tplneend.cxx +++ b/cui/source/tabpages/tplneend.cxx @@ -60,6 +60,7 @@ SvxLineEndDefTabPage::SvxLineEndDefTabPage , &rInAttrs ), rOutAttrs ( rInAttrs ), pPolyObj ( NULL ), + bObjSelected ( false ), pXPool ( (XOutdevItemPool*) rInAttrs.GetPool() ), aXLStyle ( XLINE_SOLID ), @@ -67,7 +68,11 @@ SvxLineEndDefTabPage::SvxLineEndDefTabPage aXColor ( OUString(), COL_BLACK ), aXLineAttr ( pXPool ), rXLSet ( aXLineAttr.GetItemSet() ), - pLineEndList ( NULL ) + pLineEndList ( NULL ), + pnLineEndListState ( NULL ), + pPageType ( NULL ), + nDlgType ( 0 ), + pPosLineEndLb ( NULL ) { get(m_pEdtName,"EDT_NAME"); get(m_pLbLineEnds,"LB_LINEENDS"); |