From 1235c8ae93bcaaf1f2ababdeefe22dc3700078b7 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Mon, 31 Mar 2014 20:52:09 +0100 Subject: coverity#738869 Uninitialized pointer field Change-Id: If0a3eae2bb54979e8a6119b5084fc0d29cbd5ebb --- svx/source/dialog/_contdlg.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/svx/source/dialog/_contdlg.cxx b/svx/source/dialog/_contdlg.cxx index 9095ce0c1a8f..c793ef7cb558 100644 --- a/svx/source/dialog/_contdlg.cxx +++ b/svx/source/dialog/_contdlg.cxx @@ -209,6 +209,7 @@ void SvxContourDlg::Update( const Graphic& rGraphic, bool bGraphicLinked, SvxSuperContourDlg::SvxSuperContourDlg( SfxBindings *_pBindings, SfxChildWindow *pCW, Window* _pParent, const ResId& rResId ) : SvxContourDlg ( _pBindings, pCW, _pParent, rResId ), + pUpdateEditingObject( NULL ), pCheckObj ( NULL ), aContourItem ( SID_CONTOUR_EXEC, *this, *_pBindings ), aTbx1 ( this, ResId( TBX1, *rResId.GetResMgr() ) ), @@ -217,6 +218,7 @@ SvxSuperContourDlg::SvxSuperContourDlg( SfxBindings *_pBindings, SfxChildWindow aStbStatus ( this, WB_BORDER | WB_3DLOOK | WB_LEFT ), nGrfChanged ( 0UL ), bExecState ( sal_False ), + bUpdateGraphicLinked( sal_False ), bGraphicLinked ( sal_False ), maImageList ( SVX_RES( CD_IMAPDLG ) ) { -- cgit