diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-04-24 12:24:56 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-04-24 14:51:26 +0100 |
commit | e402e112a1fb5599c6869c5e69fe10d3798f1d4b (patch) | |
tree | 23309201c14d1e5281db7b6513db5943bd2cbdb4 /cui | |
parent | e0097fea5a761747c1c1ce19a0873d7a760c4c37 (diff) |
coverity#1405477 Uninitialized pointer field
and
coverity#1405476 Uninitialized pointer field
Change-Id: I6f6a13f5c3037ff11636938135bad72f8b3419d2
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/inc/cuitabarea.hxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/cui/source/inc/cuitabarea.hxx b/cui/source/inc/cuitabarea.hxx index 7d3a12f69d1b..6e45726d80e5 100644 --- a/cui/source/inc/cuitabarea.hxx +++ b/cui/source/inc/cuitabarea.hxx @@ -396,7 +396,6 @@ private: ChangeType* m_pnGradientListState; ChangeType* m_pnColorListState; - sal_Int32* m_pPos; XFillStyleItem m_aXFStyleItem; XFillGradientItem m_aXGradientItem; @@ -436,7 +435,6 @@ public: void SetColorList( XColorListRef const & pColorList ) { m_pColorList = pColorList; } void SetGradientList( XGradientListRef const & pGrdLst) { m_pGradientList = pGrdLst; } - void SetPos( sal_Int32* pPos ) { m_pPos = pPos; } void SetGrdChgd( ChangeType* pIn ) { m_pnGradientListState = pIn; } void SetColorChgd( ChangeType* pIn ) { m_pnColorListState = pIn; } }; @@ -468,7 +466,6 @@ private: ChangeType* m_pnHatchingListState; ChangeType* m_pnColorListState; - sal_Int32* m_pPos; XFillStyleItem m_aXFStyleItem; XFillHatchItem m_aXHatchItem; @@ -513,7 +510,6 @@ public: void SetHatchingList( XHatchListRef const & pHtchLst) { m_pHatchingList = pHtchLst; } - void SetPos( sal_Int32* pPos ) { m_pPos = pPos; } void SetHtchChgd( ChangeType* pIn ) { m_pnHatchingListState = pIn; } void SetColorChgd( ChangeType* pIn ) { m_pnColorListState = pIn; } |