summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-11-13 19:45:06 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-11-14 10:15:14 +0100
commitfea392e1aae17851d5c0a657b287cdae07b8119b (patch)
tree8035f3993ae1bfcaf9cc8447230c17d0824bd456 /vcl
parent85dc973219c31a11e9a88cb86dcb813402084149 (diff)
-Werror,-Wunused-exception-parameter
Change-Id: I7e2dbcf299fc01255340c78d99f0434dc0c1fc61
Diffstat (limited to 'vcl')
-rw-r--r--vcl/unx/gtk/a11y/atkselection.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/vcl/unx/gtk/a11y/atkselection.cxx b/vcl/unx/gtk/a11y/atkselection.cxx
index d0d63cfc3259..8132118377b6 100644
--- a/vcl/unx/gtk/a11y/atkselection.cxx
+++ b/vcl/unx/gtk/a11y/atkselection.cxx
@@ -59,7 +59,7 @@ selection_add_selection( AtkSelection *selection,
return TRUE;
}
}
- catch(const uno::Exception& e) {
+ catch(const uno::Exception&) {
g_warning( "Exception in selectAccessibleChild()" );
}
@@ -77,7 +77,7 @@ selection_clear_selection( AtkSelection *selection )
return TRUE;
}
}
- catch(const uno::Exception& e) {
+ catch(const uno::Exception&) {
g_warning( "Exception in selectAccessibleChild()" );
}
@@ -93,7 +93,7 @@ selection_ref_selection( AtkSelection *selection,
if( pSelection )
return atk_object_wrapper_ref( pSelection->getSelectedAccessibleChild( i ) );
}
- catch(const uno::Exception& e) {
+ catch(const uno::Exception&) {
g_warning( "Exception in getSelectedAccessibleChild()" );
}
@@ -108,7 +108,7 @@ selection_get_selection_count( AtkSelection *selection)
if( pSelection )
return pSelection->getSelectedAccessibleChildCount();
}
- catch(const uno::Exception& e) {
+ catch(const uno::Exception&) {
g_warning( "Exception in getSelectedAccessibleChildCount()" );
}
@@ -124,7 +124,7 @@ selection_is_child_selected( AtkSelection *selection,
if( pSelection )
return pSelection->isAccessibleChildSelected( i );
}
- catch(const uno::Exception& e) {
+ catch(const uno::Exception&) {
g_warning( "Exception in getSelectedAccessibleChildCount()" );
}
@@ -143,7 +143,7 @@ selection_remove_selection( AtkSelection *selection,
return TRUE;
}
}
- catch(const uno::Exception& e) {
+ catch(const uno::Exception&) {
g_warning( "Exception in getSelectedAccessibleChildCount()" );
}
@@ -161,7 +161,7 @@ selection_select_all_selection( AtkSelection *selection)
return TRUE;
}
}
- catch(const uno::Exception& e) {
+ catch(const uno::Exception&) {
g_warning( "Exception in getSelectedAccessibleChildCount()" );
}