This commit is contained in:
alemuntoni 2020-08-03 11:01:45 +02:00
parent 949c1cec63
commit fca63a7b85
4 changed files with 0 additions and 16 deletions

View File

@ -1,7 +0,0 @@
Flying pointers to remove:
meshlab/mainwindow_init.cpp
meshlab/customDialog.cpp
meshlab/filterScriptDialog.cpp
meshlabserver/mainserver.cpp

View File

@ -129,7 +129,6 @@ public:
RichParameter& addParam(const RichParameter& pd);
void join(const RichParameterList& rps);
void pushFromQDomElement(QDomElement np);
void swap(RichParameterList& oth);

View File

@ -70,8 +70,3 @@ void MeshValue::fillToXMLElement(QDomElement&) const
//could be a good idea.
}

View File

@ -115,9 +115,6 @@ bool FilterScript::open(QString filename)
qDebug("Reading filter with name %s", qUtf8Printable(name));
for(QDomElement np = nf.firstChildElement("Param"); !np.isNull(); np = np.nextSiblingElement("Param"))
{
RichParameter* rp = NULL;
RichParameterAdapter::create(np,&rp);
//FilterParameter::addQDomElement(par,np);
par.pushFromQDomElement(np);
}
FilterNameParameterValuesPair* tmp = new FilterNameParameterValuesPair();