Marked the two parameters as unused on headerTableCellChanged

This commit is contained in:
Tom Cummins 2021-10-10 21:58:31 +01:00 committed by Nyall Dawson
parent 5c3b13692f
commit c4d2512bb3

View File

@ -126,7 +126,9 @@ void QgsAuthApiHeaderEdit::headerTableSelectionChanged()
void QgsAuthApiHeaderEdit::headerTableCellChanged( const int row, const int column )
{
QgsDebugMsg( QStringLiteral( "Cell updated: row %1 column %2" ).arg( row ).arg( column ) );
Q_UNUSED( row );
Q_UNUSED( column );
validateConfig();
}