From fd14aa9dc2ce2b24392dbb510d302ec46a2fecbf Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sun, 12 Jul 2015 15:58:07 +0100 Subject: coverity#1311655 Uninitialized scalar field Change-Id: I377bca31f33398754ff48e15ffa29d43fc584f3b --- svx/source/sidebar/shadow/ShadowPropertyPanel.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'svx') diff --git a/svx/source/sidebar/shadow/ShadowPropertyPanel.cxx b/svx/source/sidebar/shadow/ShadowPropertyPanel.cxx index a027abc8ef92..45ca00375aaf 100644 --- a/svx/source/sidebar/shadow/ShadowPropertyPanel.cxx +++ b/svx/source/sidebar/shadow/ShadowPropertyPanel.cxx @@ -71,7 +71,10 @@ ShadowPropertyPanel::ShadowPropertyPanel( maShadowXDistanceController(SID_ATTR_SHADOW_XDISTANCE, *pBindings, *this), maShadowYDistanceController(SID_ATTR_SHADOW_YDISTANCE, *pBindings, *this), mxFrame(rxFrame), - mpBindings(pBindings) + mpBindings(pBindings), + nX(0), + nY(0), + nXY(0) { get(mpShowShadow,"SHOW_SHADOW"); get(mpFTAngle,"angle"); -- cgit v1.2.3