diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-11-13 19:34:30 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-11-14 10:15:13 +0100 |
commit | 85dc973219c31a11e9a88cb86dcb813402084149 (patch) | |
tree | 9ee68103ea49d0fe86239f6bec83c1ca1cf53fc5 /vcl | |
parent | 0fb6957f37214224a9a6d74db0edb68779b2a33b (diff) |
-Werror,-Wunused-exception-parameter
Change-Id: I4763547ceebab61077c67f2a8c67d6ab388fb6b3
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/unx/gtk/a11y/atkhypertext.cxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/vcl/unx/gtk/a11y/atkhypertext.cxx b/vcl/unx/gtk/a11y/atkhypertext.cxx index d7a3852d9cbb..864057d10687 100644 --- a/vcl/unx/gtk/a11y/atkhypertext.cxx +++ b/vcl/unx/gtk/a11y/atkhypertext.cxx @@ -63,7 +63,7 @@ hyper_link_get_uri( AtkHyperlink *pLink, OUString aUri = aAny.get< OUString > (); return OUStringToGChar(aUri); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in hyper_link_get_uri" ); } return NULL; @@ -78,7 +78,7 @@ hyper_link_get_object( AtkHyperlink *pLink, uno::Reference< accessibility::XAccessible > xObj( aAny, uno::UNO_QUERY_THROW ); return atk_object_wrapper_ref( xObj ); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in hyper_link_get_object" ); } return NULL; @@ -89,7 +89,7 @@ hyper_link_get_end_index( AtkHyperlink *pLink ) try { return getHyperlink( pLink )->getEndIndex(); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { } return -1; } @@ -99,7 +99,7 @@ hyper_link_get_start_index( AtkHyperlink *pLink ) try { return getHyperlink( pLink )->getStartIndex(); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { } return -1; } @@ -109,7 +109,7 @@ hyper_link_is_valid( AtkHyperlink *pLink ) try { return getHyperlink( pLink )->isValid(); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { } return FALSE; } @@ -119,7 +119,7 @@ hyper_link_get_n_anchors( AtkHyperlink *pLink ) try { return getHyperlink( pLink )->getAccessibleActionCount(); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { } return 0; } @@ -230,7 +230,7 @@ hypertext_get_link( AtkHypertext *hypertext, return ATK_HYPERLINK( pLink ); } } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in getHyperLink()" ); } @@ -245,7 +245,7 @@ hypertext_get_n_links( AtkHypertext *hypertext ) if( pHypertext ) return pHypertext->getHyperLinkCount(); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in getHyperLinkCount()" ); } @@ -261,7 +261,7 @@ hypertext_get_link_index( AtkHypertext *hypertext, if( pHypertext ) return pHypertext->getHyperLinkIndex( index ); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in getHyperLinkIndex()" ); } |