Skip to content

Commit 201f108

Browse files
committedApr 26, 2018
Fix doxygen warnings
1 parent d8c3623 commit 201f108

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎src/core/geometry/qgsgeos.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ class CORE_EXPORT QgsGeos: public QgsGeometryEngine
124124

125125
/**
126126
* Adds a new island polygon to a multipolygon feature
127+
* \param geometry geometry to add part to
127128
* \param newPart part to add. Ownership is NOT transferred.
128129
* \returns OperationResult a result code: success or reason of failure
129130
*/
@@ -342,15 +343,17 @@ class CORE_EXPORT QgsGeos: public QgsGeometryEngine
342343

343344
/**
344345
* Returns a geos geometry - caller takes ownership of the object (should be deleted with GEOSGeom_destroy_r)
346+
* \param geometry geometry to convert to GEOS representation
345347
* \param precision The precision of the grid to which to snap the geometry vertices. If 0, no snapping is performed.
346348
*/
347349
static geos::unique_ptr asGeos( const QgsGeometry &geometry, double precision = 0 );
348350

349351
/**
350352
* Returns a geos geometry - caller takes ownership of the object (should be deleted with GEOSGeom_destroy_r)
353+
* \param geometry geometry to convert to GEOS representation
351354
* \param precision The precision of the grid to which to snap the geometry vertices. If 0, no snapping is performed.
352355
*/
353-
static geos::unique_ptr asGeos( const QgsAbstractGeometry *geom, double precision = 0 );
356+
static geos::unique_ptr asGeos( const QgsAbstractGeometry *geometry, double precision = 0 );
354357
static QgsPoint coordSeqPoint( const GEOSCoordSequence *cs, int i, bool hasZ, bool hasM );
355358

356359
static GEOSContextHandle_t getGEOSHandler();

0 commit comments

Comments
 (0)
Please sign in to comment.