summaryrefslogtreecommitdiff
path: root/oox/source/export/chartexport.cxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2014-02-12 22:35:35 +0100
committerMichael Stahl <mstahl@redhat.com>2014-02-12 23:26:20 +0100
commit45c7b349d7540b0db48e634318d6a9009da7a949 (patch)
tree99cace1c85e618816a94772b6fa600f7a2faa415 /oox/source/export/chartexport.cxx
parent500568a8f34c71db65d11aa8ca67b961bf1df1d7 (diff)
oox: warning C4101: 'rEx' : unreferenced local variable
Change-Id: I79722b33a0c193a8bb0c0dd357787ee213909051
Diffstat (limited to 'oox/source/export/chartexport.cxx')
-rw-r--r--oox/source/export/chartexport.cxx9
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);
}
}