summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-13 14:02:08 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-13 14:56:25 +0000
commit60cb17c28a639f15fc351f444da37a37ab503ab5 (patch)
tree6bfc594851d853dc24616fb2bab605a8390f562a /svx
parent67e1559fbe48e3af5eec04d413b8a2f3b487640d (diff)
coverity#708342 Uninitialized pointer field
Change-Id: I76803ae267c18350d5da6c9e425339cefd0817d7
Diffstat (limited to 'svx')
-rw-r--r--svx/source/dialog/_contdlg.cxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/svx/source/dialog/_contdlg.cxx b/svx/source/dialog/_contdlg.cxx
index 34d304259abd..47f9e3d6bfdb 100644
--- a/svx/source/dialog/_contdlg.cxx
+++ b/svx/source/dialog/_contdlg.cxx
@@ -87,10 +87,9 @@ SvxContourDlgChildWindow::SvxContourDlgChildWindow( Window* _pParent, sal_uInt16
}
SvxContourDlg::SvxContourDlg( SfxBindings* _pBindings, SfxChildWindow* pCW,
- Window* _pParent, const ResId& rResId ) :
-
- SfxFloatingWindow ( _pBindings, pCW, _pParent, rResId )
-
+ Window* _pParent, const ResId& rResId )
+ : SfxFloatingWindow(_pBindings, pCW, _pParent, rResId)
+ , pSuperClass(NULL)
{
}