diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-02 10:54:10 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-02 14:48:59 +0100 |
commit | 7aa8b5bb22df7cd09eef23f4b0d40852e8bcdd50 (patch) | |
tree | 21f6ee72f9006343e1f2d8404c71a5fd052130bf /cui | |
parent | d82057a3c7deba1d3a3dc65ef845ac14da7b6ba0 (diff) |
coverity#1242785 Uninitialized pointer field
Change-Id: Ic97bd7c3fa2f192113d702f9338cb3eaeae6109c
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/tabpages/tplnedef.cxx | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/cui/source/tabpages/tplnedef.cxx b/cui/source/tabpages/tplnedef.cxx index cf945d689375..931038b71acd 100644 --- a/cui/source/tabpages/tplnedef.cxx +++ b/cui/source/tabpages/tplnedef.cxx @@ -57,6 +57,7 @@ SvxLineDefTabPage::SvxLineDefTabPage , "cui/ui/linestyletabpage.ui" , &rInAttrs ), rOutAttrs ( rInAttrs ), + bObjSelected ( false ), pXPool ( (XOutdevItemPool*) rInAttrs.GetPool() ), aXLStyle ( XLINE_DASH ), @@ -64,7 +65,11 @@ SvxLineDefTabPage::SvxLineDefTabPage aXDash ( OUString(), XDash( XDASH_RECT, 3, 7, 2, 40, 15 ) ), aXColor ( OUString(), COL_BLACK ), aXLineAttr ( pXPool ), - rXLSet ( aXLineAttr.GetItemSet() ) + rXLSet ( aXLineAttr.GetItemSet() ), + pnDashListState(0), + pPageType(0), + nDlgType(0), + pPosDashLb(0) { get(m_pLbLineStyles ,"LB_LINESTYLES"); @@ -146,9 +151,6 @@ SvxLineDefTabPage::SvxLineDefTabPage pDashList = NULL; } - - - void SvxLineDefTabPage::Construct() { // Line style fill; do *not* add default fields here |