Skip to content

Commit d4c6efa

Browse files
committedJul 17, 2018
Typo
(cherry-picked from 61fbb5f)
1 parent 1cf5303 commit d4c6efa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎src/app/qgsstatisticalsummarydockwidget.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ void QgsStatisticalSummaryDockWidget::refreshStatistics()
222222
void QgsStatisticalSummaryDockWidget::gathererFinished()
223223
{
224224
QgsStatisticsValueGatherer *gatherer = qobject_cast<QgsStatisticsValueGatherer *>( QObject::sender() );
225-
// this may have been sent from a gathererer which was canceled previously and we don't care
225+
// this may have been sent from a gatherer which was canceled previously and we don't care
226226
// about it anymore...
227227
if ( gatherer == mGatherer )
228228
{
@@ -236,7 +236,7 @@ void QgsStatisticalSummaryDockWidget::gathererFinished()
236236
void QgsStatisticalSummaryDockWidget::updateNumericStatistics()
237237
{
238238
QgsStatisticsValueGatherer *gatherer = qobject_cast<QgsStatisticsValueGatherer *>( QObject::sender() );
239-
// this may have been sent from a gathererer which was canceled previously and we don't care
239+
// this may have been sent from a gatherer which was canceled previously and we don't care
240240
// about it anymore...
241241
if ( gatherer != mGatherer )
242242
return;
@@ -305,7 +305,7 @@ void QgsStatisticalSummaryDockWidget::updateNumericStatistics()
305305
void QgsStatisticalSummaryDockWidget::updateStringStatistics()
306306
{
307307
QgsStatisticsValueGatherer *gatherer = qobject_cast<QgsStatisticsValueGatherer *>( QObject::sender() );
308-
// this may have been sent from a gathererer which was canceled previously and we don't care
308+
// this may have been sent from a gatherer which was canceled previously and we don't care
309309
// about it anymore...
310310
if ( gatherer != mGatherer )
311311
return;
@@ -428,7 +428,7 @@ void QgsStatisticalSummaryDockWidget::layerSelectionChanged()
428428
void QgsStatisticalSummaryDockWidget::updateDateTimeStatistics()
429429
{
430430
QgsStatisticsValueGatherer *gatherer = qobject_cast<QgsStatisticsValueGatherer *>( QObject::sender() );
431-
// this may have been sent from a gathererer which was canceled previously and we don't care
431+
// this may have been sent from a gatherer which was canceled previously and we don't care
432432
// about it anymore...
433433
if ( gatherer != mGatherer )
434434
return;

0 commit comments

Comments
 (0)
Please sign in to comment.