From: eap Date: Mon, 4 Apr 2005 12:16:55 +0000 (+0000) Subject: PAL8536. In SMESHGUI_doubleParameter::InitializeWidget() allow going down to _bottom X-Git-Tag: V2_2_3~9 X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=commitdiff_plain;h=2f62477c15ecdce9f1945a791a708260e997d337 PAL8536. In SMESHGUI_doubleParameter::InitializeWidget() allow going down to _bottom --- diff --git a/src/SMESHGUI/SMESHGUI_aParameter.cxx b/src/SMESHGUI/SMESHGUI_aParameter.cxx index cbd22eb3b..7ba5e20dc 100644 --- a/src/SMESHGUI/SMESHGUI_aParameter.cxx +++ b/src/SMESHGUI/SMESHGUI_aParameter.cxx @@ -115,8 +115,9 @@ void SMESHGUI_doubleParameter::InitializeWidget( QWidget* theQWidget) const { QAD_SpinBoxDbl * aSpin = dynamic_cast< QAD_SpinBoxDbl *>( theQWidget ); if ( aSpin ) { + aSpin->setPrecision( _decimals ); + aSpin->setDblPrecision( _bottom ); aSpin->setRange( _bottom, _top ); - ((QDoubleValidator*)(aSpin->validator()))->setRange( _bottom, _top, _decimals ); aSpin->setValue( _initValue ); aSpin->setLineStep( _step ); }