Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Typo
(cherry-picked from 61fbb5f)
  • Loading branch information
nyalldawson committed Jul 17, 2018
1 parent 1cf5303 commit d4c6efa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/qgsstatisticalsummarydockwidget.cpp
Expand Up @@ -222,7 +222,7 @@ void QgsStatisticalSummaryDockWidget::refreshStatistics()
void QgsStatisticalSummaryDockWidget::gathererFinished()
{
QgsStatisticsValueGatherer *gatherer = qobject_cast<QgsStatisticsValueGatherer *>( QObject::sender() );
// this may have been sent from a gathererer which was canceled previously and we don't care
// this may have been sent from a gatherer which was canceled previously and we don't care
// about it anymore...
if ( gatherer == mGatherer )
{
Expand All @@ -236,7 +236,7 @@ void QgsStatisticalSummaryDockWidget::gathererFinished()
void QgsStatisticalSummaryDockWidget::updateNumericStatistics()
{
QgsStatisticsValueGatherer *gatherer = qobject_cast<QgsStatisticsValueGatherer *>( QObject::sender() );
// this may have been sent from a gathererer which was canceled previously and we don't care
// this may have been sent from a gatherer which was canceled previously and we don't care
// about it anymore...
if ( gatherer != mGatherer )
return;
Expand Down Expand Up @@ -305,7 +305,7 @@ void QgsStatisticalSummaryDockWidget::updateNumericStatistics()
void QgsStatisticalSummaryDockWidget::updateStringStatistics()
{
QgsStatisticsValueGatherer *gatherer = qobject_cast<QgsStatisticsValueGatherer *>( QObject::sender() );
// this may have been sent from a gathererer which was canceled previously and we don't care
// this may have been sent from a gatherer which was canceled previously and we don't care
// about it anymore...
if ( gatherer != mGatherer )
return;
Expand Down Expand Up @@ -428,7 +428,7 @@ void QgsStatisticalSummaryDockWidget::layerSelectionChanged()
void QgsStatisticalSummaryDockWidget::updateDateTimeStatistics()
{
QgsStatisticsValueGatherer *gatherer = qobject_cast<QgsStatisticsValueGatherer *>( QObject::sender() );
// this may have been sent from a gathererer which was canceled previously and we don't care
// this may have been sent from a gatherer which was canceled previously and we don't care
// about it anymore...
if ( gatherer != mGatherer )
return;
Expand Down

0 comments on commit d4c6efa

Please sign in to comment.