Skip to content

Commit 00eb261

Browse files
committedNov 21, 2016
fix warnings
1 parent f77ab4d commit 00eb261

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎python/analysis/network/qgsgraphdirector.sip

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ class QgsGraphDirector : QObject
3434
*
3535
* @param builder the graph builder
3636
* @param additionalPoints list of points that should be snapped to the graph
37-
* @param tiedPoints list of snapped points
38-
* @note if tiedPoints[i] == QgsPoint(0.0,0.0) then snapping failed.
37+
* @param snappedPoints list of snapped points
38+
* @note if snappedPoints[i] == QgsPoint(0.0,0.0) then snapping failed.
3939
*/
4040
virtual void makeGraph( QgsGraphBuilderInterface *builder,
4141
const QVector< QgsPoint > &additionalPoints,

‎src/analysis/network/qgsgraphdirector.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ class ANALYSIS_EXPORT QgsGraphDirector : public QObject
4747
*
4848
* @param builder the graph builder
4949
* @param additionalPoints list of points that should be snapped to the graph
50-
* @param tiedPoints list of snapped points
51-
* @note if tiedPoints[i] == QgsPoint(0.0,0.0) then snapping failed.
50+
* @param snappedPoints list of snapped points
51+
* @note if snappedPoints[i] == QgsPoint(0.0,0.0) then snapping failed.
5252
*/
5353
virtual void makeGraph( QgsGraphBuilderInterface *builder,
5454
const QVector< QgsPoint > &additionalPoints,

0 commit comments

Comments
 (0)
Please sign in to comment.