Kaydet (Commit) fea392e1 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Werror,-Wunused-exception-parameter

Change-Id: I7e2dbcf299fc01255340c78d99f0434dc0c1fc61
üst 85dc9732
...@@ -59,7 +59,7 @@ selection_add_selection( AtkSelection *selection, ...@@ -59,7 +59,7 @@ selection_add_selection( AtkSelection *selection,
return TRUE; return TRUE;
} }
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in selectAccessibleChild()" ); g_warning( "Exception in selectAccessibleChild()" );
} }
...@@ -77,7 +77,7 @@ selection_clear_selection( AtkSelection *selection ) ...@@ -77,7 +77,7 @@ selection_clear_selection( AtkSelection *selection )
return TRUE; return TRUE;
} }
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in selectAccessibleChild()" ); g_warning( "Exception in selectAccessibleChild()" );
} }
...@@ -93,7 +93,7 @@ selection_ref_selection( AtkSelection *selection, ...@@ -93,7 +93,7 @@ selection_ref_selection( AtkSelection *selection,
if( pSelection ) if( pSelection )
return atk_object_wrapper_ref( pSelection->getSelectedAccessibleChild( i ) ); return atk_object_wrapper_ref( pSelection->getSelectedAccessibleChild( i ) );
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in getSelectedAccessibleChild()" ); g_warning( "Exception in getSelectedAccessibleChild()" );
} }
...@@ -108,7 +108,7 @@ selection_get_selection_count( AtkSelection *selection) ...@@ -108,7 +108,7 @@ selection_get_selection_count( AtkSelection *selection)
if( pSelection ) if( pSelection )
return pSelection->getSelectedAccessibleChildCount(); return pSelection->getSelectedAccessibleChildCount();
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in getSelectedAccessibleChildCount()" ); g_warning( "Exception in getSelectedAccessibleChildCount()" );
} }
...@@ -124,7 +124,7 @@ selection_is_child_selected( AtkSelection *selection, ...@@ -124,7 +124,7 @@ selection_is_child_selected( AtkSelection *selection,
if( pSelection ) if( pSelection )
return pSelection->isAccessibleChildSelected( i ); return pSelection->isAccessibleChildSelected( i );
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in getSelectedAccessibleChildCount()" ); g_warning( "Exception in getSelectedAccessibleChildCount()" );
} }
...@@ -143,7 +143,7 @@ selection_remove_selection( AtkSelection *selection, ...@@ -143,7 +143,7 @@ selection_remove_selection( AtkSelection *selection,
return TRUE; return TRUE;
} }
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in getSelectedAccessibleChildCount()" ); g_warning( "Exception in getSelectedAccessibleChildCount()" );
} }
...@@ -161,7 +161,7 @@ selection_select_all_selection( AtkSelection *selection) ...@@ -161,7 +161,7 @@ selection_select_all_selection( AtkSelection *selection)
return TRUE; return TRUE;
} }
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in getSelectedAccessibleChildCount()" ); g_warning( "Exception in getSelectedAccessibleChildCount()" );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment