Skip to content

Commit

Permalink
Deprecate zonal stats alg
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Sep 10, 2020
1 parent 7fb1740 commit 253cd52
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/analysis/processing/qgsalgorithmzonalstatistics.cpp
Expand Up @@ -69,7 +69,7 @@ QString QgsZonalStatisticsAlgorithm::shortHelpString() const

QgsProcessingAlgorithm::Flags QgsZonalStatisticsAlgorithm::flags() const
{
return QgsProcessingAlgorithm::flags() | QgsProcessingAlgorithm::FlagNoThreading;
return QgsProcessingAlgorithm::flags() | QgsProcessingAlgorithm::FlagNoThreading | QgsProcessingAlgorithm::FlagDeprecated;
}

QgsZonalStatisticsAlgorithm *QgsZonalStatisticsAlgorithm::createInstance() const
Expand Down
Expand Up @@ -42,7 +42,7 @@ QString QgsZonalStatisticsFeatureBasedAlgorithm::name() const

QString QgsZonalStatisticsFeatureBasedAlgorithm::displayName() const
{
return QObject::tr( "Zonal statistics (feature based)" );
return QObject::tr( "Zonal statistics" );
}

QStringList QgsZonalStatisticsFeatureBasedAlgorithm::tags() const
Expand Down

0 comments on commit 253cd52

Please sign in to comment.