diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-02 10:43:27 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-02 14:48:58 +0100 |
commit | 78bd404c8d7126f1eb0c570fcf1cce403e1a08c1 (patch) | |
tree | 0edad216558a376b4e7fc5876af343083113c9c4 /cui | |
parent | 707a44089afa5fa62321a24daff6473c499a441c (diff) |
coverity#1242826 Uninitialized pointer field
Change-Id: I6292d16d8925aa8562942a016bb02ba3785196a3
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/tabpages/tpline.cxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/cui/source/tabpages/tpline.cxx b/cui/source/tabpages/tpline.cxx index 5da506f3d745..311bb5dc2387 100644 --- a/cui/source/tabpages/tpline.cxx +++ b/cui/source/tabpages/tpline.cxx @@ -95,6 +95,7 @@ SvxLineTabPage::SvxLineTabPage bSymbols(false), rOutAttrs ( rInAttrs ), + eRP( RP_LT ), bObjSelected( false ), pXPool ( (XOutdevItemPool*) rInAttrs.GetPool() ), @@ -107,7 +108,11 @@ SvxLineTabPage::SvxLineTabPage pnLineEndListState( 0 ), pnDashListState( 0 ), pnColorListState( 0 ), - nPageType ( 0 ) + nPageType ( 0 ), + + nDlgType(0), + pPosDashLb(NULL), + pPosLineEndLb(NULL) { get(m_pLbLineStyle,"LB_LINE_STYLE"); get(m_pBoxColor,"boxCOLOR"); |