diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-07-12 15:58:07 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-07-12 15:58:07 +0100 |
commit | fd14aa9dc2ce2b24392dbb510d302ec46a2fecbf (patch) | |
tree | 78b9997ac168c5936b58068d71a6a02fecc236c8 /svx | |
parent | ca1a5ebf49d377d93c6c8c57a14d64460babf176 (diff) |
coverity#1311655 Uninitialized scalar field
Change-Id: I377bca31f33398754ff48e15ffa29d43fc584f3b
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/sidebar/shadow/ShadowPropertyPanel.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
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"); |