removed compile-time error

This commit is contained in:
Guido Ranzuglia granzuglia 2012-05-29 13:41:08 +00:00
parent a265765429
commit 519ade3b08

View File

@ -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));
}