translation string fix

This commit is contained in:
Juergen E. Fischer 2023-10-20 09:46:53 +02:00
parent bc1b549653
commit a521332020

View File

@ -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() );