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

-Werror,-Wunused-exception-parameter

Change-Id: Ibcf69aee2391b830c328f458ba2ab753a4e18b9d
üst 6ed352a7
...@@ -77,7 +77,7 @@ action_wrapper_do_action (AtkAction *action, ...@@ -77,7 +77,7 @@ action_wrapper_do_action (AtkAction *action,
if( pAction ) if( pAction )
return pAction->doAccessibleAction( i ); return pAction->doAccessibleAction( i );
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in doAccessibleAction()" ); g_warning( "Exception in doAccessibleAction()" );
} }
...@@ -92,7 +92,7 @@ action_wrapper_get_n_actions (AtkAction *action) ...@@ -92,7 +92,7 @@ action_wrapper_get_n_actions (AtkAction *action)
if( pAction ) if( pAction )
return pAction->getAccessibleActionCount(); return pAction->getAccessibleActionCount();
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in getAccessibleActionCount()" ); g_warning( "Exception in getAccessibleActionCount()" );
} }
...@@ -150,7 +150,7 @@ action_wrapper_get_name (AtkAction *action, ...@@ -150,7 +150,7 @@ action_wrapper_get_name (AtkAction *action,
return aNewVal.second; return aNewVal.second;
} }
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in getAccessibleActionDescription()" ); g_warning( "Exception in getAccessibleActionDescription()" );
} }
...@@ -238,7 +238,7 @@ action_wrapper_get_keybinding (AtkAction *action, ...@@ -238,7 +238,7 @@ action_wrapper_get_keybinding (AtkAction *action,
} }
} }
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in get_keybinding()" ); g_warning( "Exception in get_keybinding()" );
} }
......
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