diff --git a/vcg/simplex/vertex/component_ocf.h b/vcg/simplex/vertex/component_ocf.h index 8071fa07..a8e87dd7 100644 --- a/vcg/simplex/vertex/component_ocf.h +++ b/vcg/simplex/vertex/component_ocf.h @@ -429,7 +429,7 @@ public: void ImportLocal(const LeftV & leftV){ if((*this).Base().NormalEnabled && leftV.Base().NormalEnabled ) // copy the data only if they are enabled in both vertices N().Import(leftV.cN()); - T::ImporLocal(leftV);} + T::ImportLocal(leftV);} }; template class Normal3sOcf: public NormalOcf {}; @@ -448,7 +448,7 @@ public: { if((*this).Base().ColorEnabled && leftV.Base().ColorEnabled ) // copy the data only if they are enabled in both vertices C() = leftV.cC(); - T::ImporLocal(leftV); + T::ImportLocal(leftV); } static bool HasColor() { return true; } @@ -468,7 +468,7 @@ public: { if((*this).Base().QualityEnabled && leftV.Base().QualityEnabled ) // copy the data only if they are enabled in both vertices Q() = leftV.cQ(); - T::ImporLocal(leftV); + T::ImportLocal(leftV); } static bool HasQuality() { return true; } static bool HasQualityOcf() { assert(!T::HasQualityOcf()); return true; }