diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-01 16:21:46 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-01 20:28:58 +0100 |
commit | 39a6d582a5a98f073ccb8e2bdd6832ace5eb3ca9 (patch) | |
tree | ebc27b52b8aab7af93fbb14b221e2ea836bce60c /cui/source | |
parent | d6dd0a3b10427e5b8b2aef6d98fcd86cf6129347 (diff) |
coverity#1242928 Uninitialized pointer field
Change-Id: I841306c664ddc5d81ce1c84357de3b2daf32964a
Diffstat (limited to 'cui/source')
-rw-r--r-- | cui/source/tabpages/tpshadow.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cui/source/tabpages/tpshadow.cxx b/cui/source/tabpages/tpshadow.cxx index 7bd6076eb6c9..9621c459677a 100644 --- a/cui/source/tabpages/tpshadow.cxx +++ b/cui/source/tabpages/tpshadow.cxx @@ -53,6 +53,7 @@ SvxShadowTabPage::SvxShadowTabPage( vcl::Window* pParent, const SfxItemSet& rInA rInAttrs ), rOutAttrs ( rInAttrs ), eRP ( RP_LT ), + pnColorListState ( 0 ), nPageType ( 0 ), nDlgType ( 0 ), pbAreaTP ( 0 ), @@ -162,11 +163,8 @@ SvxShadowTabPage::SvxShadowTabPage( vcl::Window* pParent, const SfxItemSet& rInA m_pLbShadowColor->SetSelectHdl( aLink ); m_pMtrTransparent->SetModifyHdl( aLink ); m_pMtrDistance->SetModifyHdl( aLink ); - } - - void SvxShadowTabPage::Construct() { m_pLbShadowColor->Fill( pColorList ); |