oox: warning C4101: 'rEx' : unreferenced local variable

Change-Id: I79722b33a0c193a8bb0c0dd357787ee213909051
This commit is contained in:
Michael Stahl
2014-02-12 22:35:35 +01:00
parent 500568a8f3
commit 45c7b349d7

View File

@@ -1192,9 +1192,9 @@ void ChartExport::exportBitmapFill( Reference< XPropertySet > xPropSet )
WriteBlipFill( xPropSet, sBitmapURL, XML_a, true, true ); WriteBlipFill( xPropSet, sBitmapURL, XML_a, true, true );
} }
} }
catch( const uno::Exception & rEx ) catch (const uno::Exception & rEx)
{ {
DBG_WARNING( "Bitmap Property not Found; ChartExport::exportBitmapFill" ); SAL_INFO("oox", "ChartExport::exportBitmapFill " << rEx.Message);
} }
} }
@@ -1218,9 +1218,10 @@ void ChartExport::exportGradientFill( Reference< XPropertySet > xPropSet )
WriteGradientFill( aGradient ); WriteGradientFill( aGradient );
} }
} }
catch( const uno::Exception & rEx ) catch (const uno::Exception & rEx)
{ {
DBG_WARNING( "Gradient Property not Found; ChartExport::exportGradientFill" ); SAL_INFO("oox",
"ChartExport::exportGradientFill " << rEx.Message);
} }
} }