diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-08-16 10:11:33 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-08-16 10:19:47 +0100 |
commit | ea1cb03e5f4aa6defb860c948c48d60c7f151bfb (patch) | |
tree | e1d9dec00c113a3c85e1e0610c9e9604fdb9436f /sd | |
parent | 8ea6c913a46d7c64398881467269c4b5aee62827 (diff) |
WaE: unused variable
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&) { } |