From 1aae826501c9a26d40b0827e69d84f680dff6a6b Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Tue, 29 Nov 2011 02:06:57 +0900 Subject: catch by const reference --- .../source/controller/itemsetwrapper/GraphicPropertyItemConverter.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chart2/source/controller/itemsetwrapper/GraphicPropertyItemConverter.cxx') diff --git a/chart2/source/controller/itemsetwrapper/GraphicPropertyItemConverter.cxx b/chart2/source/controller/itemsetwrapper/GraphicPropertyItemConverter.cxx index 374cdc2a4e08..c173ad26b5d3 100644 --- a/chart2/source/controller/itemsetwrapper/GraphicPropertyItemConverter.cxx +++ b/chart2/source/controller/itemsetwrapper/GraphicPropertyItemConverter.cxx @@ -298,7 +298,7 @@ void GraphicPropertyItemConverter::FillSpecialItem( } } } - catch( beans::UnknownPropertyException &ex ) + catch( const beans::UnknownPropertyException &ex ) { ASSERT_EXCEPTION( ex ); } @@ -542,7 +542,7 @@ bool GraphicPropertyItemConverter::ApplySpecialItem( } } } - catch( beans::UnknownPropertyException &ex ) + catch( const beans::UnknownPropertyException &ex ) { ASSERT_EXCEPTION( ex ); } -- cgit