From c4d2512bb323a625b90d539cc00be4310040c395 Mon Sep 17 00:00:00 2001 From: Tom Cummins Date: Sun, 10 Oct 2021 21:58:31 +0100 Subject: [PATCH] Marked the two parameters as unused on headerTableCellChanged --- src/auth/apiheader/gui/qgsauthapiheaderedit.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/auth/apiheader/gui/qgsauthapiheaderedit.cpp b/src/auth/apiheader/gui/qgsauthapiheaderedit.cpp index 3b3736958b9..f3700c5e293 100644 --- a/src/auth/apiheader/gui/qgsauthapiheaderedit.cpp +++ b/src/auth/apiheader/gui/qgsauthapiheaderedit.cpp @@ -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(); }