diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-08 13:00:48 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-08 14:15:55 +0000 |
commit | 9ff5689fe25362431f5bf4f2b25056e8899bee40 (patch) | |
tree | f9b456608e5638d34dc7f185617f49ad6062badd /cui/source | |
parent | 06410bdf1f05db344a5b2ab9275575fed5bded53 (diff) |
coverity#1169878 Uninitialized pointer field
Change-Id: I722689f54f7c12ab632104550c632aaa16afe65f
Diffstat (limited to 'cui/source')
-rw-r--r-- | cui/source/customize/macropg.cxx | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/cui/source/customize/macropg.cxx b/cui/source/customize/macropg.cxx index 9f0fe1d93d0f..44acf93b834a 100644 --- a/cui/source/customize/macropg.cxx +++ b/cui/source/customize/macropg.cxx @@ -52,13 +52,14 @@ using namespace ::com::sun::star::uno; static OUString aVndSunStarUNO( "vnd.sun.star.UNO:" ); static OUString aVndSunStarScript( "vnd.sun.star.script:" ); -_SvxMacroTabPage_Impl::_SvxMacroTabPage_Impl( const SfxItemSet& rAttrSet ) : - pAssignPB( NULL ), - pAssignComponentPB( NULL ), - pDeletePB( NULL ), - pEventLB( NULL ), - bReadOnly( sal_False ), - bIDEDialogMode( sal_False ) +_SvxMacroTabPage_Impl::_SvxMacroTabPage_Impl( const SfxItemSet& rAttrSet ) + : pAssignFT(NULL) + , pAssignPB(NULL) + , pAssignComponentPB(NULL) + , pDeletePB(NULL) + , pEventLB(NULL) + , bReadOnly(false) + , bIDEDialogMode(false) { const SfxPoolItem* pItem; if ( SFX_ITEM_SET == rAttrSet.GetItemState( SID_ATTR_MACROITEM, sal_False, &pItem ) ) |