From 0f4f4b12bf83a2a5dfc30ceba4e06ab1f3453cd4 Mon Sep 17 00:00:00 2001 From: Paolo Cignoni cignoni Date: Sun, 6 Sep 2009 07:48:03 +0000 Subject: [PATCH] currentDataMask is now private --- src/meshlabplugins/filter_mls/mlsplugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meshlabplugins/filter_mls/mlsplugin.cpp b/src/meshlabplugins/filter_mls/mlsplugin.cpp index 525913c45..4913b9daf 100644 --- a/src/meshlabplugins/filter_mls/mlsplugin.cpp +++ b/src/meshlabplugins/filter_mls/mlsplugin.cpp @@ -409,7 +409,7 @@ bool MlsPlugin::applyFilter(QAction* filter, MeshDocument& md, RichParameterSet& // clone the control mesh MeshModel* ref = par.getMesh("ControlMesh"); pPoints = new MeshModel(); - pPoints->updateDataMask(ref->currentDataMask); + pPoints->updateDataMask(ref); vcg::tri::Append::Mesh(pPoints->cm, ref->cm, false, true); // the last true means "copy all vertices" vcg::tri::UpdateBounding::Box(pPoints->cm); pPoints->cm.Tr = ref->cm.Tr;