Fix for ticket #352, missing return value

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5979 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
gsherman 2006-10-20 06:45:37 +00:00
parent 83155cfbf0
commit b68244ec09

View File

@ -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;
}