diff options
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/unoidl/unomodel.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/unoidl/unomodel.cxx b/sd/source/ui/unoidl/unomodel.cxx index 40bf973a4dc7..e21033e1b877 100644 --- a/sd/source/ui/unoidl/unomodel.cxx +++ b/sd/source/ui/unoidl/unomodel.cxx @@ -300,7 +300,7 @@ void SAL_CALL SdXImpressDocument::release() throw ( ) { dispose(); } - catch (uno::RuntimeException const& exc) + catch (const uno::RuntimeException& exc) { // don't break throw () OSL_FAIL( OUStringToOString( @@ -1561,7 +1561,7 @@ void ImplPDFExportComments( uno::Reference< drawing::XDrawPage > xPage, vcl::PDF static_cast< long >( aRealPoint2D.Y * 100 ) ), Size( 1000, 1000 ) ), aNote ); } } - catch( uno::Exception& ) + catch (const uno::Exception&) { } } @@ -2093,7 +2093,7 @@ void SAL_CALL SdXImpressDocument::render( sal_Int32 nRenderer, const uno::Any& r } //<--- #i56629, #i40318 } - catch( uno::Exception& e ) + catch (const uno::Exception&) { } |