diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-03-14 16:31:18 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-03-14 16:49:30 +0100 |
commit | 6d2f041a6569671a98f42272b1798171af211c75 (patch) | |
tree | 2685c84824f49d93c3fb045b7d2a9926d51f387d /chart2 | |
parent | b82ed78c88b368747be8baccda76733a3bdfe591 (diff) |
warning C4101: unreferenced local variable
Change-Id: I61fb72e824a43d28756edfff7a6655443fe2ee82
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/view/main/ChartView.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/source/view/main/ChartView.cxx b/chart2/source/view/main/ChartView.cxx index d6efb503d796..76993ada2140 100644 --- a/chart2/source/view/main/ChartView.cxx +++ b/chart2/source/view/main/ChartView.cxx @@ -683,7 +683,7 @@ void SeriesPlotterContainer::initializeCooSysAndSeriesPlotter( if (n3DRelativeHeightOldValue != n3DRelativeHeight) xPropertySet->setPropertyValue( "3DRelativeHeight", uno::makeAny(n3DRelativeHeight) ); } - catch(const uno::Exception& e){} + catch (const uno::Exception&) { } } } |