Remove JoinObjectParameters() method
This commit is contained in:
parent
417c06b5ac
commit
b09de1d401
@ -307,12 +307,12 @@ bool NETGENPluginGUI_HypothesisCreator::storeParamsToHypo( const NetgenHypothesi
|
|||||||
h_2d->SetQuadAllowed( h_data.myAllowQuadrangles );
|
h_2d->SetQuadAllowed( h_data.myAllowQuadrangles );
|
||||||
}
|
}
|
||||||
|
|
||||||
h->SetParameters(SMESHGUI::JoinObjectParameters(aVariablesList));
|
h->SetParameters(aVariablesList.join(":").toLatin1().constData());
|
||||||
if( fineness==UserDefined )
|
if( fineness==UserDefined )
|
||||||
{
|
{
|
||||||
h->SetParameters(SMESHGUI::JoinObjectParameters(aVariablesList));
|
h->SetParameters(aVariablesList.join(":").toLatin1().constData());
|
||||||
h->SetParameters(SMESHGUI::JoinObjectParameters(aVariablesList));
|
h->SetParameters(aVariablesList.join(":").toLatin1().constData());
|
||||||
h->SetParameters(SMESHGUI::JoinObjectParameters(aVariablesList));
|
h->SetParameters(aVariablesList.join(":").toLatin1().constData());
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -329,7 +329,7 @@ QString NETGENPluginGUI_SimpleCreator::storeParams() const
|
|||||||
aVariablesList.append(myLength->text());
|
aVariablesList.append(myLength->text());
|
||||||
}
|
}
|
||||||
|
|
||||||
h->SetParameters(SMESHGUI::JoinObjectParameters(aVariablesList));
|
h->SetParameters(aVariablesList.join(":").toLatin1().constData());
|
||||||
|
|
||||||
// 2D
|
// 2D
|
||||||
if ( myArea->isEnabled() ) {
|
if ( myArea->isEnabled() ) {
|
||||||
@ -343,7 +343,7 @@ QString NETGENPluginGUI_SimpleCreator::storeParams() const
|
|||||||
aVariablesList.append(QString());
|
aVariablesList.append(QString());
|
||||||
}
|
}
|
||||||
|
|
||||||
h->SetParameters(SMESHGUI::JoinObjectParameters(aVariablesList));
|
h->SetParameters(aVariablesList.join(":").toLatin1().constData());
|
||||||
|
|
||||||
// 3D
|
// 3D
|
||||||
if ( myVolume ) {
|
if ( myVolume ) {
|
||||||
@ -359,7 +359,7 @@ QString NETGENPluginGUI_SimpleCreator::storeParams() const
|
|||||||
valStr += "; lenFromFaces";
|
valStr += "; lenFromFaces";
|
||||||
aVariablesList.append(QString());
|
aVariablesList.append(QString());
|
||||||
}
|
}
|
||||||
h->SetParameters(SMESHGUI::JoinObjectParameters(aVariablesList));
|
h->SetParameters(aVariablesList.join(":").toLatin1().constData());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(const SALOME::SALOME_Exception& ex)
|
catch(const SALOME::SALOME_Exception& ex)
|
||||||
|
Loading…
Reference in New Issue
Block a user