diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-04-15 10:42:13 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-04-15 10:43:53 +0300 |
commit | 9d101a302caca8271ce3d93e0d7f31129a61224e (patch) | |
tree | c9bc1c050ee5c77f9aa3c0c1f6625b2432f982c8 /svx | |
parent | 9d9f8151f32046a09fe903361d3e85cb601390ba (diff) |
WaE: 'bHarsh2' may be used uninitialized in this function
Change-Id: I900545e1556ddf8b76453d7fb189a2fc79f8744c
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/toolbars/extrusionbar.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/toolbars/extrusionbar.cxx b/svx/source/toolbars/extrusionbar.cxx index 06169c7d3521..2ad2b3b9043e 100644 --- a/svx/source/toolbars/extrusionbar.cxx +++ b/svx/source/toolbars/extrusionbar.cxx @@ -407,7 +407,7 @@ static void impl_execute( SdrView*, SfxRequest& rReq, SdrCustomShapeGeometryItem sal_Int32 nLevel = ((const SfxInt32Item*)rReq.GetArgs()->GetItem(SID_EXTRUSION_LIGHTING_INTENSITY))->GetValue(); double fBrightness; - bool bHarsh2; + bool bHarsh2 = false; double fLevel1; double fLevel2; |