diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-11-13 16:37:34 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-11-14 10:15:12 +0100 |
commit | eecfc1e2a4287fcd93a19bbc5876a0bc1ada7822 (patch) | |
tree | b40f451e5a17f9610a0a72ac920acc3eb560d5b2 /vcl | |
parent | 6ed352a7b35fd2f740fe76cc56b0b255b6ceae17 (diff) |
-Werror,-Wunused-exception-parameter
Change-Id: Ibcf69aee2391b830c328f458ba2ab753a4e18b9d
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/unx/gtk/a11y/atkaction.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/unx/gtk/a11y/atkaction.cxx b/vcl/unx/gtk/a11y/atkaction.cxx index 3dbce852a1e8..11f315fcb75b 100644 --- a/vcl/unx/gtk/a11y/atkaction.cxx +++ b/vcl/unx/gtk/a11y/atkaction.cxx @@ -77,7 +77,7 @@ action_wrapper_do_action (AtkAction *action, if( pAction ) return pAction->doAccessibleAction( i ); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in doAccessibleAction()" ); } @@ -92,7 +92,7 @@ action_wrapper_get_n_actions (AtkAction *action) if( pAction ) return pAction->getAccessibleActionCount(); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in getAccessibleActionCount()" ); } @@ -150,7 +150,7 @@ action_wrapper_get_name (AtkAction *action, return aNewVal.second; } } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in getAccessibleActionDescription()" ); } @@ -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()" ); } |