Skip to content

Commit

Permalink
Fix for ticket #352, missing return value
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5979 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
gsherman committed Oct 20, 2006
1 parent 83155cf commit b68244e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/gui/qgsmaptoolvertexedit.cpp
Expand Up @@ -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;
}


Expand Down

0 comments on commit b68244e

Please sign in to comment.