From 8b47d21e890f3816731b6992f8c0fc4d1f2581d0 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 13 Nov 2013 19:46:43 +0100 Subject: -Werror,-Wunused-exception-parameter Change-Id: If4952a5e36ba52f07231560f4bd3cc568b9fde52 --- vcl/unx/gtk/a11y/atktable.cxx | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) (limited to 'vcl') diff --git a/vcl/unx/gtk/a11y/atktable.cxx b/vcl/unx/gtk/a11y/atktable.cxx index 662eec113b52..60bb7fed2043 100644 --- a/vcl/unx/gtk/a11y/atktable.cxx +++ b/vcl/unx/gtk/a11y/atktable.cxx @@ -101,7 +101,7 @@ table_wrapper_ref_at (AtkTable *table, return atk_object_wrapper_conditional_ref( pTable->getAccessibleCellAt( row, column ) ); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in getAccessibleCellAt()" ); } @@ -127,7 +127,7 @@ table_wrapper_get_index_at (AtkTable *table, if( pTable ) return pTable->getAccessibleIndex( row, column ); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in getAccessibleIndex()" ); } @@ -152,7 +152,7 @@ table_wrapper_get_column_at_index (AtkTable *table, if( pTable ) return pTable->getAccessibleColumn( nIndex ); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in getAccessibleColumn()" ); } @@ -177,7 +177,7 @@ table_wrapper_get_row_at_index( AtkTable *table, if( pTable ) return pTable->getAccessibleRow( nIndex ); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in getAccessibleRow()" ); } @@ -201,7 +201,7 @@ table_wrapper_get_n_columns( AtkTable *table ) if( pTable ) return pTable->getAccessibleColumnCount(); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in getAccessibleColumnCount()" ); } @@ -225,7 +225,7 @@ table_wrapper_get_n_rows( AtkTable *table ) if( pTable ) return pTable->getAccessibleRowCount(); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in getAccessibleRowCount()" ); } @@ -251,7 +251,7 @@ table_wrapper_get_column_extent_at( AtkTable *table, if( pTable ) return pTable->getAccessibleColumnExtentAt( row, column ); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in getAccessibleColumnExtentAt()" ); } @@ -277,7 +277,7 @@ table_wrapper_get_row_extent_at( AtkTable *table, if( pTable ) return pTable->getAccessibleRowExtentAt( row, column ); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in getAccessibleRowExtentAt()" ); } @@ -301,7 +301,7 @@ table_wrapper_get_caption( AtkTable *table ) return atk_object_wrapper_conditional_ref( pTable->getAccessibleCaption() ); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in getAccessibleCaption()" ); } @@ -326,7 +326,7 @@ table_wrapper_get_row_description( AtkTable *table, if( pTable ) return getAsConst( pTable->getAccessibleRowDescription( row ) ); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in getAccessibleRowDescription()" ); } @@ -351,7 +351,7 @@ table_wrapper_get_column_description( AtkTable *table, if( pTable ) return getAsConst( pTable->getAccessibleColumnDescription( column ) ); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in getAccessibleColumnDescription()" ); } @@ -382,7 +382,7 @@ table_wrapper_get_row_header( AtkTable *table, return atk_object_wrapper_conditional_ref( xRowHeaders->getAccessibleCellAt( row, 0 ) ); } } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in getAccessibleRowHeaders()" ); } @@ -414,7 +414,7 @@ table_wrapper_get_column_header( AtkTable *table, return atk_object_wrapper_conditional_ref( xColumnHeaders->getAccessibleCellAt( 0, column ) ); } } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in getAccessibleColumnHeaders()" ); } @@ -439,7 +439,7 @@ table_wrapper_get_summary( AtkTable *table ) return atk_object_wrapper_conditional_ref( pTable->getAccessibleSummary() ); } } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in getAccessibleSummary()" ); } @@ -480,7 +480,7 @@ table_wrapper_get_selected_columns( AtkTable *table, if( pTable ) return convertToGIntArray( pTable->getSelectedAccessibleColumns(), pSelected ); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in getSelectedAccessibleColumns()" ); } @@ -505,7 +505,7 @@ table_wrapper_get_selected_rows( AtkTable *table, if( pTable ) return convertToGIntArray( pTable->getSelectedAccessibleRows(), pSelected ); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in getSelectedAccessibleRows()" ); } @@ -530,7 +530,7 @@ table_wrapper_is_column_selected( AtkTable *table, if( pTable ) return pTable->isAccessibleColumnSelected( column ); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in isAccessibleColumnSelected()" ); } @@ -555,7 +555,7 @@ table_wrapper_is_row_selected( AtkTable *table, if( pTable ) return pTable->isAccessibleRowSelected( row ); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in isAccessibleRowSelected()" ); } @@ -581,7 +581,7 @@ table_wrapper_is_selected( AtkTable *table, if( pTable ) return pTable->isAccessibleSelected( row, column ); } - catch(const uno::Exception& e) { + catch(const uno::Exception&) { g_warning( "Exception in isAccessibleSelected()" ); } -- cgit