summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-11-13 19:59:56 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-11-14 10:15:14 +0100
commitc21304822685e463052f4cdff64c31c97d3394fa (patch)
treef8326b8e05a707a75f3b68015b4a840be6896004 /vcl
parent07b9bec1a6ebdae111d0def33692ffa3efe61dad (diff)
-Werror,-Wunused-exception-parameter
Change-Id: I9858795019e5b15965cdfe9f186129a93b6d52ad
Diffstat (limited to 'vcl')
-rw-r--r--vcl/unx/gtk/a11y/atkvalue.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/unx/gtk/a11y/atkvalue.cxx b/vcl/unx/gtk/a11y/atkvalue.cxx
index af8cdb3ea96b..46abdfd480a9 100644
--- a/vcl/unx/gtk/a11y/atkvalue.cxx
+++ b/vcl/unx/gtk/a11y/atkvalue.cxx
@@ -68,7 +68,7 @@ value_wrapper_get_current_value( AtkValue *value,
if( pValue )
anyToGValue( pValue->getCurrentValue(), gval );
}
- catch(const uno::Exception& e) {
+ catch(const uno::Exception&) {
g_warning( "Exception in getCurrentValue()" );
}
}
@@ -82,7 +82,7 @@ value_wrapper_get_maximum_value( AtkValue *value,
if( pValue )
anyToGValue( pValue->getMaximumValue(), gval );
}
- catch(const uno::Exception& e) {
+ catch(const uno::Exception&) {
g_warning( "Exception in getCurrentValue()" );
}
}
@@ -96,7 +96,7 @@ value_wrapper_get_minimum_value( AtkValue *value,
if( pValue )
anyToGValue( pValue->getMinimumValue(), gval );
}
- catch(const uno::Exception& e) {
+ catch(const uno::Exception&) {
g_warning( "Exception in getCurrentValue()" );
}
}
@@ -116,7 +116,7 @@ value_wrapper_set_current_value( AtkValue *value,
return pValue->setCurrentValue( aAny );
}
}
- catch(const uno::Exception& e) {
+ catch(const uno::Exception&) {
g_warning( "Exception in getCurrentValue()" );
}