Kaydet (Commit) d4ea861f authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Werror,-Wunused-exception-parameter

Change-Id: I697e70491fb77f61615b3d5780b57fff29a04ec6
üst b76187aa
...@@ -81,7 +81,7 @@ component_wrapper_grab_focus (AtkComponent *component) ...@@ -81,7 +81,7 @@ component_wrapper_grab_focus (AtkComponent *component)
return TRUE; return TRUE;
} }
} }
catch( const uno::Exception &e ) catch( const uno::Exception & )
{ {
g_warning( "Exception in grabFocus()" ); g_warning( "Exception in grabFocus()" );
} }
...@@ -103,7 +103,7 @@ component_wrapper_contains (AtkComponent *component, ...@@ -103,7 +103,7 @@ component_wrapper_contains (AtkComponent *component,
if( pComponent ) if( pComponent )
return pComponent->containsPoint( translatePoint( pComponent, x, y, coord_type ) ); return pComponent->containsPoint( translatePoint( pComponent, x, y, coord_type ) );
} }
catch( const uno::Exception &e ) catch( const uno::Exception & )
{ {
g_warning( "Exception in containsPoint()" ); g_warning( "Exception in containsPoint()" );
} }
...@@ -147,7 +147,7 @@ component_wrapper_ref_accessible_at_point (AtkComponent *component, ...@@ -147,7 +147,7 @@ component_wrapper_ref_accessible_at_point (AtkComponent *component,
return atk_object_wrapper_ref( xAccessible ); return atk_object_wrapper_ref( xAccessible );
} }
} }
catch( const uno::Exception &e ) catch( const uno::Exception & )
{ {
g_warning( "Exception in getAccessibleAtPoint()" ); g_warning( "Exception in getAccessibleAtPoint()" );
} }
...@@ -183,7 +183,7 @@ component_wrapper_get_position (AtkComponent *component, ...@@ -183,7 +183,7 @@ component_wrapper_get_position (AtkComponent *component,
#endif #endif
} }
} }
catch( const uno::Exception &e ) catch( const uno::Exception & )
{ {
g_warning( "Exception in getLocation[OnScreen]()" ); g_warning( "Exception in getLocation[OnScreen]()" );
} }
...@@ -210,7 +210,7 @@ component_wrapper_get_size (AtkComponent *component, ...@@ -210,7 +210,7 @@ component_wrapper_get_size (AtkComponent *component,
#endif #endif
} }
} }
catch( const uno::Exception &e ) catch( const uno::Exception & )
{ {
g_warning( "Exception in getSize()" ); g_warning( "Exception in getSize()" );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment