diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-03-14 17:15:11 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-03-14 17:15:39 +0100 |
commit | 51a18f9bbd0191936e5137f9fe86161e7d87c8da (patch) | |
tree | c250381a4b5c68a0c34b0c629d5d64f236a68cd6 /chart2 | |
parent | 112d3287a9424e0baaa8d956e6aff8932d48658e (diff) |
warning C4101: unreferenced local variable
Change-Id: I43a0a1dbe37eb76a3d89ace8222cd5f5e3357579
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/view/charttypes/PieChart.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/source/view/charttypes/PieChart.cxx b/chart2/source/view/charttypes/PieChart.cxx index 03d545533485..80ec134a94d3 100644 --- a/chart2/source/view/charttypes/PieChart.cxx +++ b/chart2/source/view/charttypes/PieChart.cxx @@ -349,7 +349,7 @@ void PieChart::createShapes() uno::Any aAny = xPropertySet->getPropertyValue( "3DRelativeHeight" ); aAny >>= n3DRelativeHeight; } - catch(const uno::Exception& e) {} + catch (const uno::Exception&) { } } //============================================================================= |