summaryrefslogtreecommitdiff
path: root/framework/source/xml/imagesconfiguration.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'framework/source/xml/imagesconfiguration.cxx')
-rw-r--r--framework/source/xml/imagesconfiguration.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/framework/source/xml/imagesconfiguration.cxx b/framework/source/xml/imagesconfiguration.cxx
index 28e187b094f1..738d6f2930eb 100644
--- a/framework/source/xml/imagesconfiguration.cxx
+++ b/framework/source/xml/imagesconfiguration.cxx
@@ -104,15 +104,15 @@ sal_Bool ImagesConfiguration::LoadImages(
xParser->parseStream( aInputSource );
return sal_True;
}
- catch ( RuntimeException& )
+ catch ( const RuntimeException& )
{
return sal_False;
}
- catch( SAXException& )
+ catch( const SAXException& )
{
return sal_False;
}
- catch( ::com::sun::star::io::IOException& )
+ catch( const ::com::sun::star::io::IOException& )
{
return sal_False;
}
@@ -134,15 +134,15 @@ sal_Bool ImagesConfiguration::StoreImages(
aWriteImagesDocumentHandler.WriteImagesDocument();
return sal_True;
}
- catch ( RuntimeException& )
+ catch ( const RuntimeException& )
{
return sal_False;
}
- catch ( SAXException& )
+ catch ( const SAXException& )
{
return sal_False;
}
- catch ( ::com::sun::star::io::IOException& )
+ catch ( const ::com::sun::star::io::IOException& )
{
return sal_False;
}