From 19954fcc9663b2735bf04d8b7e4d245734fce7bf Mon Sep 17 00:00:00 2001 From: bdm-oslandia Date: Thu, 17 Jul 2025 16:08:42 +0200 Subject: [PATCH] fixup! sfcgal: remove QgsAbstractGeometry inheritance from QgsSfcgalGeometry --- src/core/geometry/qgssfcgalgeometry.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/core/geometry/qgssfcgalgeometry.h b/src/core/geometry/qgssfcgalgeometry.h index 5d54e0178a6..e8e31c873b2 100644 --- a/src/core/geometry/qgssfcgalgeometry.h +++ b/src/core/geometry/qgssfcgalgeometry.h @@ -239,11 +239,10 @@ class CORE_EXPORT QgsSfcgalGeometry /** * Cover test on 2D or 3D geometries - * Checks if \a geomA covers \a geomB. + * Checks if this covers \a otherGeom. * A 3D covers test is conducted when at least one geometry is 3D; otherwise, a 2D covers test is carried out. * - * \param geomA first geometry to perform the operation - * \param geomB second geometry to perform the operation + * \param otherGeom second geometry to perform the operation * \param errorMsg Error message returned by SFGCAL */ bool covers( const QgsSfcgalGeometry &otherGeom, QString *errorMsg = nullptr ) const;