NPAL17873: SMESH add a triangle instead of make quadrangles only.

This commit is contained in:
jfa 2008-02-01 09:17:04 +00:00
parent f27fb702a4
commit 03cd588b86
2 changed files with 4 additions and 4 deletions

View File

@ -37,4 +37,4 @@
#define STDMESHERSGUI_EXPORT
#endif
#endif
#endif

View File

@ -708,14 +708,14 @@ bool StdMeshersGUI_StdHypothesisCreator::stdParams( ListOfStdParams& p ) const
*/
//================================================================================
void StdMeshersGUI_StdHypothesisCreator::attuneStdWidget (QWidget* w, const int param) const
void StdMeshersGUI_StdHypothesisCreator::attuneStdWidget (QWidget* w, const int) const
{
SMESHGUI_SpinBox* sb = w->inherits( "SMESHGUI_SpinBox" ) ? ( SMESHGUI_SpinBox* )w : 0;
if( hypType()=="LocalLength" && sb )
{
if (param == 0) // Length
if (sb->name() == tr("SMESH_LOCAL_LENGTH_PARAM"))
sb->RangeStepAndValidator( VALUE_SMALL, VALUE_MAX, 1.0, 6 );
else // Precision
else if (sb->name() == tr("SMESH_LOCAL_LENGTH_PRECISION"))
sb->RangeStepAndValidator( 0.0, 1.0, 0.05, 6 );
}
else if( hypType()=="Arithmetic1D" && sb )