From 5a2beb36e84d7f38041e8b7865fa2437dc3db8bb Mon Sep 17 00:00:00 2001 From: "Juergen E. Fischer" Date: Sat, 25 Jan 2014 11:28:15 +0100 Subject: [PATCH] fix doxygen warnings --- src/analysis/vector/qgstransectsample.h | 2 +- src/core/qgsgeometry.h | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/analysis/vector/qgstransectsample.h b/src/analysis/vector/qgstransectsample.h index 7d6b30adeb2..aab37f07cdf 100644 --- a/src/analysis/vector/qgstransectsample.h +++ b/src/analysis/vector/qgstransectsample.h @@ -68,7 +68,7 @@ class ANALYSIS_EXPORT QgsTransectSample static QgsGeometry* closestMultilineElement( const QgsPoint& pt, QgsGeometry* multiLine ); /**Returns clipped buffer line. Iteratively applies reduced tolerances if the result is not a single line @param stratumGeom stratum polygon - @param clippedBaselineGeom base line geometry clipped to the stratum + @param clippedBaseline base line geometry clipped to the stratum @param tolerance buffer distance (in layer units) @return clipped buffer line or 0 in case of error*/ static QgsGeometry* clipBufferLine( QgsGeometry* stratumGeom, QgsGeometry* clippedBaseline, double tolerance ); diff --git a/src/core/qgsgeometry.h b/src/core/qgsgeometry.h index 1d1384b8f37..08dfacae6f3 100644 --- a/src/core/qgsgeometry.h +++ b/src/core/qgsgeometry.h @@ -531,14 +531,14 @@ class CORE_EXPORT QgsGeometry GEOSCoordSequence** new_sequence ); /**Translates a single vertex by dx and dy. - @param wkbPosition position in wkb array. Is increased automatically by the function - @param dx translation of x-coordinate - @param dy translation of y-coordinate + @param wkbPtr pointer to current position in wkb array. Is increased automatically by the function + @param dx translation of x coordinate + @param dy translation of y coordinate @param hasZValue 25D type?*/ void translateVertex( QgsWkbPtr &wkbPtr, double dx, double dy, bool hasZValue ); /**Transforms a single vertex by ct. - @param wkbPosition position in wkb array. Is increased automatically by the function + @param wkbPtr pointer to current position in wkb. Is increased automatically by the function @param ct the QgsCoordinateTransform @param hasZValue 25D type?*/ void transformVertex( QgsWkbPtr &wkbPtr, const QgsCoordinateTransform& ct, bool hasZValue );