Skip to content

Commit

Permalink
translation string fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Oct 20, 2023
1 parent bc1b549 commit a521332
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/analysis/processing/qgsalgorithmconcavehull.cpp
Expand Up @@ -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() );
Expand Down

0 comments on commit a521332

Please sign in to comment.