diff --git a/vcg/simplex/face/component_ocf.h b/vcg/simplex/face/component_ocf.h index 2d29e8d9..bc07ba54 100644 --- a/vcg/simplex/face/component_ocf.h +++ b/vcg/simplex/face/component_ocf.h @@ -775,7 +775,7 @@ public: namespace tri { template < class FaceType > - bool FaceVectorHasPerFaceVFAdjacency(const face::vector_ocf &fv) + bool FaceVectorHasVFAdjacency(const face::vector_ocf &fv) { if(FaceType::HasVFAdjacencyOcf()) return fv.IsVFAdjacencyEnabled(); else return FaceType::HasVFAdjacency(); diff --git a/vcg/simplex/vertex/component_ocf.h b/vcg/simplex/vertex/component_ocf.h index 019377e2..0c0e6667 100644 --- a/vcg/simplex/vertex/component_ocf.h +++ b/vcg/simplex/vertex/component_ocf.h @@ -596,7 +596,7 @@ public: namespace tri { template < class VertexType > -bool VertexVectorHasPerVertexVFAdjacency(const vertex::vector_ocf &fv) +bool VertexVectorHasVFAdjacency(const vertex::vector_ocf &fv) { if(VertexType::HasVFAdjacencyOcf()) return fv.IsVFAdjacencyEnabled(); else return VertexType::HasVFAdjacency();