Kaydet (Commit) 7ea20ee3 authored tarafından Thomas Arnhold's avatar Thomas Arnhold

WaE: warning C4701: potentially uninitialized local variable

Change-Id: I00a4ebdcfc278274a567403bc1ccb5332ada836f
üst 057d5953
......@@ -2497,7 +2497,8 @@ void DrawingML::WriteShape3DEffects( Reference< XPropertySet > xPropSet )
if( aExtrusionColorProps.getLength() > 0 )
{
OUString sSchemeClr;
sal_Int32 nColor, nTransparency;
sal_Int32 nColor(0);
sal_Int32 nTransparency(0);
Sequence< PropertyValue > aColorTransformations;
for( sal_Int32 i=0; i < aExtrusionColorProps.getLength(); ++i )
{
......@@ -2522,7 +2523,8 @@ void DrawingML::WriteShape3DEffects( Reference< XPropertySet > xPropSet )
if( aContourColorProps.getLength() > 0 )
{
OUString sSchemeClr;
sal_Int32 nColor, nTransparency;
sal_Int32 nColor(0);
sal_Int32 nTransparency(0);
Sequence< PropertyValue > aColorTransformations;
for( sal_Int32 i=0; i < aContourColorProps.getLength(); ++i )
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment