diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-11-13 17:52:31 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-11-14 10:15:13 +0100 |
commit | d4ea861f721360eb26e49d12bcc115439e784fd4 (patch) | |
tree | 0337cd2c6542f1facb7c5caadd5bbb6db741aa75 /vcl/unx | |
parent | b76187aac7787877f6e2caa0f96fdba9bf26ea48 (diff) |
-Werror,-Wunused-exception-parameter
Change-Id: I697e70491fb77f61615b3d5780b57fff29a04ec6
Diffstat (limited to 'vcl/unx')
-rw-r--r-- | vcl/unx/gtk/a11y/atkcomponent.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
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()" ); } |