From 519ade3b08b68b6df4aaa83edd3e263149a8e862 Mon Sep 17 00:00:00 2001 From: Guido Ranzuglia granzuglia Date: Tue, 29 May 2012 13:41:08 +0000 Subject: [PATCH] removed compile-time error --- src/meshlabplugins/filter_photosynth/filter_photosynth.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meshlabplugins/filter_photosynth/filter_photosynth.cpp b/src/meshlabplugins/filter_photosynth/filter_photosynth.cpp index 4855409d1..809f3f1c8 100644 --- a/src/meshlabplugins/filter_photosynth/filter_photosynth.cpp +++ b/src/meshlabplugins/filter_photosynth/filter_photosynth.cpp @@ -203,7 +203,7 @@ bool FilterPhotosynthPlugin::applyFilter(QAction */*filter*/, MeshDocument &md, //this way the user can choose which point cloud the raster has to align with RasterModel *rm = md.addNewRaster(); QString imgName = imageDir.filePath(QString("IMG_%1.jpg").arg(img._ID) ); - rm->addPlane(new Plane(rm,imgName,QString(""))); + rm->addPlane(new Plane(imgName,QString(""))); rm->shot = s; rm->setLabel(QString("IMG_%1_%2.jpg").arg(int(img._ID),3,10,QLatin1Char('0')).arg(sys->_id)); }