From a35765afe4ea66d008a7da39fda5c588612cc736 Mon Sep 17 00:00:00 2001 From: Paolo Cignoni cignoni Date: Fri, 18 Jun 2010 11:49:15 +0000 Subject: [PATCH] updated to the new Append syntax --- src/meshlabplugins/filter_splitter/filter_splitter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meshlabplugins/filter_splitter/filter_splitter.cpp b/src/meshlabplugins/filter_splitter/filter_splitter.cpp index c7c944fd1..f9315cf8f 100644 --- a/src/meshlabplugins/filter_splitter/filter_splitter.cpp +++ b/src/meshlabplugins/filter_splitter/filter_splitter.cpp @@ -157,7 +157,7 @@ bool FilterSplitterPlugin::applyFilter(QAction *filter, MeshDocument &md, RichPa // that is the back one MeshModel *currentMesh = md.mm(); // source = current MeshModel *destMesh= md.addNewMesh("duplicated"); // After Adding a mesh to a MeshDocument the new mesh is the current one - tri::Append::Mesh(destMesh->cm, currentMesh->cm, false, true); // the last true means "copy all vertices" + tri::Append::Mesh(destMesh->cm, currentMesh->cm); Log(GLLogStream::FILTER,"Duplicated current model to layer %i", md.meshList.size());