Kaydet (Commit) 76563eb4 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1242752 Uninitialized pointer field

Change-Id: I3485a29fe5ce88834b2ef0d30b9c32516befa0ff
üst 205a00d0
......@@ -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");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment