Fix mac build

This commit is contained in:
uclaros 2021-09-28 18:51:25 +03:00 committed by Nyall Dawson
parent b593511df8
commit 6c46c4644c
2 changed files with 2 additions and 2 deletions

View File

@ -418,7 +418,7 @@ void QgsGeometryCheckerResultTab::highlightErrors( bool current )
mIface->mapCanvas()->refresh(); mIface->mapCanvas()->refresh();
} }
void QgsGeometryCheckerResultTab::onSelectionChanged() void QgsGeometryCheckerResultTab::onSelectionChanged( const QItemSelection &, const QItemSelection & )
{ {
highlightErrors(); highlightErrors();
ui.pushButtonOpenAttributeTable->setEnabled( ui.tableWidgetErrors->selectionModel()->hasSelection() ); ui.pushButtonOpenAttributeTable->setEnabled( ui.tableWidgetErrors->selectionModel()->hasSelection() );

View File

@ -63,7 +63,7 @@ class QgsGeometryCheckerResultTab : public QWidget
void exportErrors(); void exportErrors();
void highlightError( QgsGeometryCheckError *error ); void highlightError( QgsGeometryCheckError *error );
void highlightErrors( bool current = false ); void highlightErrors( bool current = false );
void onSelectionChanged(); void onSelectionChanged( const QItemSelection &, const QItemSelection & );
void openAttributeTable(); void openAttributeTable();
void fixErrorsWithDefault() { fixErrors( false ); } void fixErrorsWithDefault() { fixErrors( false ); }
void fixErrorsWithPrompt() { fixErrors( true ); } void fixErrorsWithPrompt() { fixErrors( true ); }