diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-02-12 22:35:35 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-02-12 23:26:20 +0100 |
commit | 45c7b349d7540b0db48e634318d6a9009da7a949 (patch) | |
tree | 99cace1c85e618816a94772b6fa600f7a2faa415 /oox | |
parent | 500568a8f34c71db65d11aa8ca67b961bf1df1d7 (diff) |
oox: warning C4101: 'rEx' : unreferenced local variable
Change-Id: I79722b33a0c193a8bb0c0dd357787ee213909051
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/export/chartexport.cxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx index 19394de8c243..337d510e89aa 100644 --- a/oox/source/export/chartexport.cxx +++ b/oox/source/export/chartexport.cxx @@ -1192,9 +1192,9 @@ void ChartExport::exportBitmapFill( Reference< XPropertySet > xPropSet ) 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 ); } } - 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); } } |