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

-Werror,-Wunused-exception-parameter

Change-Id: If4952a5e36ba52f07231560f4bd3cc568b9fde52
üst fea392e1
...@@ -101,7 +101,7 @@ table_wrapper_ref_at (AtkTable *table, ...@@ -101,7 +101,7 @@ table_wrapper_ref_at (AtkTable *table,
return atk_object_wrapper_conditional_ref( pTable->getAccessibleCellAt( row, column ) ); return atk_object_wrapper_conditional_ref( pTable->getAccessibleCellAt( row, column ) );
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in getAccessibleCellAt()" ); g_warning( "Exception in getAccessibleCellAt()" );
} }
...@@ -127,7 +127,7 @@ table_wrapper_get_index_at (AtkTable *table, ...@@ -127,7 +127,7 @@ table_wrapper_get_index_at (AtkTable *table,
if( pTable ) if( pTable )
return pTable->getAccessibleIndex( row, column ); return pTable->getAccessibleIndex( row, column );
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in getAccessibleIndex()" ); g_warning( "Exception in getAccessibleIndex()" );
} }
...@@ -152,7 +152,7 @@ table_wrapper_get_column_at_index (AtkTable *table, ...@@ -152,7 +152,7 @@ table_wrapper_get_column_at_index (AtkTable *table,
if( pTable ) if( pTable )
return pTable->getAccessibleColumn( nIndex ); return pTable->getAccessibleColumn( nIndex );
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in getAccessibleColumn()" ); g_warning( "Exception in getAccessibleColumn()" );
} }
...@@ -177,7 +177,7 @@ table_wrapper_get_row_at_index( AtkTable *table, ...@@ -177,7 +177,7 @@ table_wrapper_get_row_at_index( AtkTable *table,
if( pTable ) if( pTable )
return pTable->getAccessibleRow( nIndex ); return pTable->getAccessibleRow( nIndex );
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in getAccessibleRow()" ); g_warning( "Exception in getAccessibleRow()" );
} }
...@@ -201,7 +201,7 @@ table_wrapper_get_n_columns( AtkTable *table ) ...@@ -201,7 +201,7 @@ table_wrapper_get_n_columns( AtkTable *table )
if( pTable ) if( pTable )
return pTable->getAccessibleColumnCount(); return pTable->getAccessibleColumnCount();
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in getAccessibleColumnCount()" ); g_warning( "Exception in getAccessibleColumnCount()" );
} }
...@@ -225,7 +225,7 @@ table_wrapper_get_n_rows( AtkTable *table ) ...@@ -225,7 +225,7 @@ table_wrapper_get_n_rows( AtkTable *table )
if( pTable ) if( pTable )
return pTable->getAccessibleRowCount(); return pTable->getAccessibleRowCount();
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in getAccessibleRowCount()" ); g_warning( "Exception in getAccessibleRowCount()" );
} }
...@@ -251,7 +251,7 @@ table_wrapper_get_column_extent_at( AtkTable *table, ...@@ -251,7 +251,7 @@ table_wrapper_get_column_extent_at( AtkTable *table,
if( pTable ) if( pTable )
return pTable->getAccessibleColumnExtentAt( row, column ); return pTable->getAccessibleColumnExtentAt( row, column );
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in getAccessibleColumnExtentAt()" ); g_warning( "Exception in getAccessibleColumnExtentAt()" );
} }
...@@ -277,7 +277,7 @@ table_wrapper_get_row_extent_at( AtkTable *table, ...@@ -277,7 +277,7 @@ table_wrapper_get_row_extent_at( AtkTable *table,
if( pTable ) if( pTable )
return pTable->getAccessibleRowExtentAt( row, column ); return pTable->getAccessibleRowExtentAt( row, column );
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in getAccessibleRowExtentAt()" ); g_warning( "Exception in getAccessibleRowExtentAt()" );
} }
...@@ -301,7 +301,7 @@ table_wrapper_get_caption( AtkTable *table ) ...@@ -301,7 +301,7 @@ table_wrapper_get_caption( AtkTable *table )
return atk_object_wrapper_conditional_ref( pTable->getAccessibleCaption() ); return atk_object_wrapper_conditional_ref( pTable->getAccessibleCaption() );
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in getAccessibleCaption()" ); g_warning( "Exception in getAccessibleCaption()" );
} }
...@@ -326,7 +326,7 @@ table_wrapper_get_row_description( AtkTable *table, ...@@ -326,7 +326,7 @@ table_wrapper_get_row_description( AtkTable *table,
if( pTable ) if( pTable )
return getAsConst( pTable->getAccessibleRowDescription( row ) ); return getAsConst( pTable->getAccessibleRowDescription( row ) );
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in getAccessibleRowDescription()" ); g_warning( "Exception in getAccessibleRowDescription()" );
} }
...@@ -351,7 +351,7 @@ table_wrapper_get_column_description( AtkTable *table, ...@@ -351,7 +351,7 @@ table_wrapper_get_column_description( AtkTable *table,
if( pTable ) if( pTable )
return getAsConst( pTable->getAccessibleColumnDescription( column ) ); return getAsConst( pTable->getAccessibleColumnDescription( column ) );
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in getAccessibleColumnDescription()" ); g_warning( "Exception in getAccessibleColumnDescription()" );
} }
...@@ -382,7 +382,7 @@ table_wrapper_get_row_header( AtkTable *table, ...@@ -382,7 +382,7 @@ table_wrapper_get_row_header( AtkTable *table,
return atk_object_wrapper_conditional_ref( xRowHeaders->getAccessibleCellAt( row, 0 ) ); return atk_object_wrapper_conditional_ref( xRowHeaders->getAccessibleCellAt( row, 0 ) );
} }
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in getAccessibleRowHeaders()" ); g_warning( "Exception in getAccessibleRowHeaders()" );
} }
...@@ -414,7 +414,7 @@ table_wrapper_get_column_header( AtkTable *table, ...@@ -414,7 +414,7 @@ table_wrapper_get_column_header( AtkTable *table,
return atk_object_wrapper_conditional_ref( xColumnHeaders->getAccessibleCellAt( 0, column ) ); return atk_object_wrapper_conditional_ref( xColumnHeaders->getAccessibleCellAt( 0, column ) );
} }
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in getAccessibleColumnHeaders()" ); g_warning( "Exception in getAccessibleColumnHeaders()" );
} }
...@@ -439,7 +439,7 @@ table_wrapper_get_summary( AtkTable *table ) ...@@ -439,7 +439,7 @@ table_wrapper_get_summary( AtkTable *table )
return atk_object_wrapper_conditional_ref( pTable->getAccessibleSummary() ); return atk_object_wrapper_conditional_ref( pTable->getAccessibleSummary() );
} }
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in getAccessibleSummary()" ); g_warning( "Exception in getAccessibleSummary()" );
} }
...@@ -480,7 +480,7 @@ table_wrapper_get_selected_columns( AtkTable *table, ...@@ -480,7 +480,7 @@ table_wrapper_get_selected_columns( AtkTable *table,
if( pTable ) if( pTable )
return convertToGIntArray( pTable->getSelectedAccessibleColumns(), pSelected ); return convertToGIntArray( pTable->getSelectedAccessibleColumns(), pSelected );
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in getSelectedAccessibleColumns()" ); g_warning( "Exception in getSelectedAccessibleColumns()" );
} }
...@@ -505,7 +505,7 @@ table_wrapper_get_selected_rows( AtkTable *table, ...@@ -505,7 +505,7 @@ table_wrapper_get_selected_rows( AtkTable *table,
if( pTable ) if( pTable )
return convertToGIntArray( pTable->getSelectedAccessibleRows(), pSelected ); return convertToGIntArray( pTable->getSelectedAccessibleRows(), pSelected );
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in getSelectedAccessibleRows()" ); g_warning( "Exception in getSelectedAccessibleRows()" );
} }
...@@ -530,7 +530,7 @@ table_wrapper_is_column_selected( AtkTable *table, ...@@ -530,7 +530,7 @@ table_wrapper_is_column_selected( AtkTable *table,
if( pTable ) if( pTable )
return pTable->isAccessibleColumnSelected( column ); return pTable->isAccessibleColumnSelected( column );
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in isAccessibleColumnSelected()" ); g_warning( "Exception in isAccessibleColumnSelected()" );
} }
...@@ -555,7 +555,7 @@ table_wrapper_is_row_selected( AtkTable *table, ...@@ -555,7 +555,7 @@ table_wrapper_is_row_selected( AtkTable *table,
if( pTable ) if( pTable )
return pTable->isAccessibleRowSelected( row ); return pTable->isAccessibleRowSelected( row );
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in isAccessibleRowSelected()" ); g_warning( "Exception in isAccessibleRowSelected()" );
} }
...@@ -581,7 +581,7 @@ table_wrapper_is_selected( AtkTable *table, ...@@ -581,7 +581,7 @@ table_wrapper_is_selected( AtkTable *table,
if( pTable ) if( pTable )
return pTable->isAccessibleSelected( row, column ); return pTable->isAccessibleSelected( row, column );
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in isAccessibleSelected()" ); g_warning( "Exception in isAccessibleSelected()" );
} }
......
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