From b68244ec096d173a3fb130791f597c250ebb65a7 Mon Sep 17 00:00:00 2001 From: gsherman Date: Fri, 20 Oct 2006 06:45:37 +0000 Subject: [PATCH] Fix for ticket #352, missing return value git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5979 c8812cc2-4d05-0410-92ff-de0c093fc19c --- src/gui/qgsmaptoolvertexedit.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gui/qgsmaptoolvertexedit.cpp b/src/gui/qgsmaptoolvertexedit.cpp index 35cf0c970b0..517de63e26a 100644 --- a/src/gui/qgsmaptoolvertexedit.cpp +++ b/src/gui/qgsmaptoolvertexedit.cpp @@ -381,6 +381,9 @@ bool QgsMapToolVertexEdit::snapVertex(QgsPoint& point, int exclFeatureId, int ex point = cpyPoint; } } + // TODO: return type is bool but no logic exists to determine the + // appropriate return value. We return true to make it compile on Windows... + return true; }