Skip to content

Commit

Permalink
Fix mac build
Browse files Browse the repository at this point in the history
  • Loading branch information
uclaros authored and nyalldawson committed Sep 29, 2021
1 parent b593511 commit 6c46c46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -418,7 +418,7 @@ void QgsGeometryCheckerResultTab::highlightErrors( bool current )
mIface->mapCanvas()->refresh();
}

void QgsGeometryCheckerResultTab::onSelectionChanged()
void QgsGeometryCheckerResultTab::onSelectionChanged( const QItemSelection &, const QItemSelection & )
{
highlightErrors();
ui.pushButtonOpenAttributeTable->setEnabled( ui.tableWidgetErrors->selectionModel()->hasSelection() );
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/geometry_checker/qgsgeometrycheckerresulttab.h
Expand Up @@ -63,7 +63,7 @@ class QgsGeometryCheckerResultTab : public QWidget
void exportErrors();
void highlightError( QgsGeometryCheckError *error );
void highlightErrors( bool current = false );
void onSelectionChanged();
void onSelectionChanged( const QItemSelection &, const QItemSelection & );
void openAttributeTable();
void fixErrorsWithDefault() { fixErrors( false ); }
void fixErrorsWithPrompt() { fixErrors( true ); }
Expand Down

0 comments on commit 6c46c46

Please sign in to comment.