diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-11-13 17:51:59 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-11-14 10:15:13 +0100 |
commit | b76187aac7787877f6e2caa0f96fdba9bf26ea48 (patch) | |
tree | 81109391c379bd42cabb73a4c9c095ca66e79e66 /vcl/unx | |
parent | eecfc1e2a4287fcd93a19bbc5876a0bc1ada7822 (diff) |
-Werror,-Wunused-exception-parameter
Change-Id: Ibd913043822c9901bad8495944367915df10b1f4
Diffstat (limited to 'vcl/unx')
-rw-r--r-- | vcl/unx/gtk/a11y/atkeditabletext.cxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/vcl/unx/gtk/a11y/atkeditabletext.cxx b/vcl/unx/gtk/a11y/atkeditabletext.cxx index 7f1d5bd3fe99..ed0675ec35f4 100644 --- a/vcl/unx/gtk/a11y/atkeditabletext.cxx +++ b/vcl/unx/gtk/a11y/atkeditabletext.cxx @@ -69,7 +69,7 @@ editable_text_wrapper_set_run_attributes( AtkEditableText *text, return pEditableText->setAttributes(nStartOffset, nEndOffset, aAttributeList); } } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in setAttributes()" ); } @@ -88,7 +88,7 @@ editable_text_wrapper_set_text_contents( AtkEditableText *text, pEditableText->setText( aString ); } } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in setText()" ); } } @@ -108,7 +108,7 @@ editable_text_wrapper_insert_text( AtkEditableText *text, *pos += length; } } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in insertText()" ); } } @@ -123,7 +123,7 @@ editable_text_wrapper_cut_text( AtkEditableText *text, if( pEditableText ) pEditableText->cutText( start, end ); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in cutText()" ); } } @@ -138,7 +138,7 @@ editable_text_wrapper_delete_text( AtkEditableText *text, if( pEditableText ) pEditableText->deleteText( start, end ); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in deleteText()" ); } } @@ -152,7 +152,7 @@ editable_text_wrapper_paste_text( AtkEditableText *text, if( pEditableText ) pEditableText->pasteText( pos ); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in pasteText()" ); } } @@ -167,7 +167,7 @@ editable_text_wrapper_copy_text( AtkEditableText *text, if( pEditableText ) pEditableText->copyText( start, end ); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in copyText()" ); } } |