summaryrefslogtreecommitdiff
path: root/chart2/source/tools/OPropertySet.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2011-11-29 02:06:57 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2011-11-29 10:07:04 +0900
commit1aae826501c9a26d40b0827e69d84f680dff6a6b (patch)
treec229c28414e3289be9c893dba38aee793d298051 /chart2/source/tools/OPropertySet.cxx
parent3c795a953ffc36856588cd6b1dc23f7a83ac815d (diff)
catch by const reference
Diffstat (limited to 'chart2/source/tools/OPropertySet.cxx')
-rw-r--r--chart2/source/tools/OPropertySet.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/chart2/source/tools/OPropertySet.cxx b/chart2/source/tools/OPropertySet.cxx
index ce333fd7a7b6..ac16b7ee7756 100644
--- a/chart2/source/tools/OPropertySet.cxx
+++ b/chart2/source/tools/OPropertySet.cxx
@@ -300,7 +300,7 @@ void SAL_CALL OPropertySet::setFastPropertyValue_NoBroadcast
{
aDefault = GetDefaultValue( nHandle );
}
- catch( beans::UnknownPropertyException& )
+ catch( const beans::UnknownPropertyException& )
{
aDefault.clear();
}
@@ -381,7 +381,7 @@ void SAL_CALL OPropertySet::getFastPropertyValue
{
rValue = GetDefaultValue( nHandle );
}
- catch( beans::UnknownPropertyException& )
+ catch( const beans::UnknownPropertyException& )
{
rValue.clear();
}