summaryrefslogtreecommitdiffstats
path: root/vcl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-11-13 19:33:44 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-11-14 10:15:13 +0100
commit0fb6957f37214224a9a6d74db0edb68779b2a33b (patch)
tree75c11a839718b9cb5c7aa45d286979d9e3aaa05e /vcl
parent-Werror,-Wunused-exception-parameter (diff)
downloadcore-0fb6957f37214224a9a6d74db0edb68779b2a33b.tar.gz
core-0fb6957f37214224a9a6d74db0edb68779b2a33b.zip
-Werror,-Wunused-exception-parameter
Change-Id: I58537f2fa2c0c403f441319b574b6f7794f38152
Diffstat (limited to 'vcl')
-rw-r--r--vcl/unx/gtk/a11y/atkimage.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/unx/gtk/a11y/atkimage.cxx b/vcl/unx/gtk/a11y/atkimage.cxx
index c58a54eef5e5..9a14c819ed99 100644
--- a/vcl/unx/gtk/a11y/atkimage.cxx
+++ b/vcl/unx/gtk/a11y/atkimage.cxx
@@ -67,7 +67,7 @@ image_get_image_description( AtkImage *image )
if( pImage )
return getAsConst( pImage->getAccessibleImageDescription() );
}
- catch(const uno::Exception& e) {
+ catch(const uno::Exception&) {
g_warning( "Exception in getAccessibleImageDescription()" );
}
@@ -102,7 +102,7 @@ image_get_image_size( AtkImage *image,
*height = pImage->getAccessibleImageHeight();
}
}
- catch(const uno::Exception& e) {
+ catch(const uno::Exception&) {
g_warning( "Exception in getAccessibleImageHeight() or Width" );
}
}