diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-11-13 20:47:42 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-11-13 20:47:48 +0000 |
commit | fd90e405888cb566c8064497ee04d31360480330 (patch) | |
tree | f7fe326d58aab9258d6a9d811f0e0b4b099e25c0 /cui | |
parent | 69a3d753bb8ecc8f2001197546d721dfd92b83df (diff) |
coverity#1371441 Uninitialized pointer field
Change-Id: Icabed9a27be9e34552531997818afd202f31114c
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/tabpages/tparea.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cui/source/tabpages/tparea.cxx b/cui/source/tabpages/tparea.cxx index 773d668b06f7..b58a30661e6b 100644 --- a/cui/source/tabpages/tparea.cxx +++ b/cui/source/tabpages/tparea.cxx @@ -84,6 +84,7 @@ SvxAreaTabPage::SvxAreaTabPage( vcl::Window* pParent, const SfxItemSet& rInAttrs m_pHatchingList( nullptr ), m_pBitmapList( nullptr ), m_pPatternList( nullptr ), + mpDrawModel(nullptr), // local fixed not o be changed values for local pointers maFixed_ChangeType(ChangeType::NONE), @@ -94,7 +95,10 @@ SvxAreaTabPage::SvxAreaTabPage( vcl::Window* pParent, const SfxItemSet& rInAttrs m_pnPatternListState(&maFixed_ChangeType), m_pnGradientListState(&maFixed_ChangeType), m_pnHatchingListState(&maFixed_ChangeType), + m_nPageType(PageType::Area), m_nPos(0), + m_nDlgType(0), + m_pbAreaTP(nullptr), m_aXFillAttr ( rInAttrs.GetPool() ), m_rXFSet ( m_aXFillAttr.GetItemSet() ) { |