From eff05cdcbee562bd6559f42e1d57fb551b387f6e Mon Sep 17 00:00:00 2001 From: Paolo Cignoni cignoni Date: Tue, 30 Nov 2010 09:19:34 +0000 Subject: [PATCH] when saving a script for meshlabserver the tips and tooltips are useless... --- src/common/filterparameter.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/common/filterparameter.cpp b/src/common/filterparameter.cpp index d6f1b6ad1..40577a6e2 100644 --- a/src/common/filterparameter.cpp +++ b/src/common/filterparameter.cpp @@ -268,10 +268,10 @@ void RichParameterCopyConstructor::visit( RichMesh& pd ) void RichParameterXMLVisitor::fillRichParameterAttribute(const QString& type,const QString& name,const QString& desc,const QString& tooltip) { parElem = docdom.createElement("Param"); + parElem.setAttribute("name",name); parElem.setAttribute("type",type); - parElem.setAttribute("name",name); - parElem.setAttribute("description",desc); - parElem.setAttribute("tooltip",tooltip); + //parElem.setAttribute("description",desc); + //parElem.setAttribute("tooltip",tooltip); } void RichParameterXMLVisitor::fillRichParameterAttribute(const QString& type,const QString& name,const QString& val,const QString& desc,const QString& tooltip)