Fixed copy paste typos in the vertex face and face face range code

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@1058 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2014-05-13 10:33:24 +00:00
parent dfa030339b
commit 3aad61401f

View File

@@ -757,7 +757,7 @@ public:
* as a range object suitable for C++11 range based for loops.
*/
ConstVertexFaceIter vf_range(VertexHandle _vh) const {
return ConstVertexFaceIter(*this, _vh);
return ConstVertexFaceRange(*this, _vh);
}
/**
@@ -789,7 +789,7 @@ public:
* as a range object suitable for C++11 range based for loops.
*/
ConstFaceFaceIter ff_range(FaceHandle _fh) const {
return ConstFaceFaceIter(*this, _fh);
return ConstFaceFaceRange(*this, _fh);
}
//@}