From 5cadafc07908602ba5dd4e019a167cdab38ee669 Mon Sep 17 00:00:00 2001 From: Julien Cabieces Date: Thu, 16 Sep 2021 15:13:21 +0200 Subject: [PATCH] fix spell check --- src/gui/processing/qgsprocessingmultipleselectiondialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/processing/qgsprocessingmultipleselectiondialog.cpp b/src/gui/processing/qgsprocessingmultipleselectiondialog.cpp index af340fa32926..2f4b7b51c109 100644 --- a/src/gui/processing/qgsprocessingmultipleselectiondialog.cpp +++ b/src/gui/processing/qgsprocessingmultipleselectiondialog.cpp @@ -73,7 +73,7 @@ QgsProcessingMultipleSelectionPanelWidget::QgsProcessingMultipleSelectionPanelWi connect( mModel, &QStandardItemModel::itemChanged, this, &QgsProcessingMultipleSelectionPanelWidget::selectionChanged ); - // When user moves an item, a new item is created and an other one is removed, so we need to fire selectionChanged + // When user moves an item, a new item is created and another one is removed, so we need to fire selectionChanged // see https://github.com/qgis/QGIS/issues/44270 connect( mModel, &QStandardItemModel::rowsRemoved, this, &QgsProcessingMultipleSelectionPanelWidget::selectionChanged ); }