Skip to content

Commit b68244e

Browse files
author
gsherman
committed
Fix for ticket #352, missing return value
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5979 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 83155cf commit b68244e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/gui/qgsmaptoolvertexedit.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -381,6 +381,9 @@ bool QgsMapToolVertexEdit::snapVertex(QgsPoint& point, int exclFeatureId, int ex
381381
point = cpyPoint;
382382
}
383383
}
384+
// TODO: return type is bool but no logic exists to determine the
385+
// appropriate return value. We return true to make it compile on Windows...
386+
return true;
384387
}
385388

386389

0 commit comments

Comments
 (0)