From d4ea861f721360eb26e49d12bcc115439e784fd4 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 13 Nov 2013 17:52:31 +0100 Subject: -Werror,-Wunused-exception-parameter Change-Id: I697e70491fb77f61615b3d5780b57fff29a04ec6 --- vcl/unx/gtk/a11y/atkcomponent.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'vcl/unx') diff --git a/vcl/unx/gtk/a11y/atkcomponent.cxx b/vcl/unx/gtk/a11y/atkcomponent.cxx index 6e3bd3848e3e..8f18b49ac8a0 100644 --- a/vcl/unx/gtk/a11y/atkcomponent.cxx +++ b/vcl/unx/gtk/a11y/atkcomponent.cxx @@ -81,7 +81,7 @@ component_wrapper_grab_focus (AtkComponent *component) return TRUE; } } - catch( const uno::Exception &e ) + catch( const uno::Exception & ) { g_warning( "Exception in grabFocus()" ); } @@ -103,7 +103,7 @@ component_wrapper_contains (AtkComponent *component, if( pComponent ) return pComponent->containsPoint( translatePoint( pComponent, x, y, coord_type ) ); } - catch( const uno::Exception &e ) + catch( const uno::Exception & ) { g_warning( "Exception in containsPoint()" ); } @@ -147,7 +147,7 @@ component_wrapper_ref_accessible_at_point (AtkComponent *component, return atk_object_wrapper_ref( xAccessible ); } } - catch( const uno::Exception &e ) + catch( const uno::Exception & ) { g_warning( "Exception in getAccessibleAtPoint()" ); } @@ -183,7 +183,7 @@ component_wrapper_get_position (AtkComponent *component, #endif } } - catch( const uno::Exception &e ) + catch( const uno::Exception & ) { g_warning( "Exception in getLocation[OnScreen]()" ); } @@ -210,7 +210,7 @@ component_wrapper_get_size (AtkComponent *component, #endif } } - catch( const uno::Exception &e ) + catch( const uno::Exception & ) { g_warning( "Exception in getSize()" ); } -- cgit