summaryrefslogtreecommitdiff
path: root/chart2/source/view/main/PropertyMapper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'chart2/source/view/main/PropertyMapper.cxx')
-rw-r--r--chart2/source/view/main/PropertyMapper.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/chart2/source/view/main/PropertyMapper.cxx b/chart2/source/view/main/PropertyMapper.cxx
index 741504c0ca0e..1221e15c71df 100644
--- a/chart2/source/view/main/PropertyMapper.cxx
+++ b/chart2/source/view/main/PropertyMapper.cxx
@@ -101,7 +101,7 @@ void PropertyMapper::getValueMap(
if( aAny.hasValue() )
rValueMap.insert( tPropertyNameValueMap::value_type( aTarget, aAny ) );
}
- catch( uno::Exception& e )
+ catch( const uno::Exception& e )
{
ASSERT_EXCEPTION( e );
}
@@ -373,7 +373,7 @@ void PropertyMapper::setMultiProperties(
bSuccess = true;
}
}
- catch( uno::Exception& e )
+ catch( const uno::Exception& e )
{
ASSERT_EXCEPTION( e ); //if this occurs more often think of removing the XMultiPropertySet completly for better performance
}
@@ -393,13 +393,13 @@ void PropertyMapper::setMultiProperties(
{
xTarget->setPropertyValue( aPropName, aValue );
}
- catch( uno::Exception& e )
+ catch( const uno::Exception& e )
{
ASSERT_EXCEPTION( e );
}
}
}
- catch( uno::Exception& e )
+ catch( const uno::Exception& e )
{
ASSERT_EXCEPTION( e );
}