From a52133202070a747277d37ed17c0181372cc6772 Mon Sep 17 00:00:00 2001 From: "Juergen E. Fischer" Date: Fri, 20 Oct 2023 09:46:53 +0200 Subject: [PATCH] translation string fix --- src/analysis/processing/qgsalgorithmconcavehull.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/analysis/processing/qgsalgorithmconcavehull.cpp b/src/analysis/processing/qgsalgorithmconcavehull.cpp index 38612666564..4a852de7b02 100644 --- a/src/analysis/processing/qgsalgorithmconcavehull.cpp +++ b/src/analysis/processing/qgsalgorithmconcavehull.cpp @@ -191,7 +191,7 @@ void QgsConcaveHullAlgorithm::concaveHullQgis( std::unique_ptr< QgsFeatureSink > const QgsProcessingAlgorithm *delaunayAlg = QgsApplication::processingRegistry()->algorithmById( QStringLiteral( "native:delaunaytriangulation" ) ); if ( !delaunayAlg ) { - feedback->reportError( QObject::tr( "Failed to compute concave hull: Delaunay triangualation algorithm not found!" ), true ); + feedback->reportError( QObject::tr( "Failed to compute concave hull: Delaunay triangulation algorithm not found!" ), true ); } std::unique_ptr< QgsProcessingAlgorithm > algorithm; algorithm.reset( delaunayAlg->create() );