Salome HOME
PAL8536. SMESHGUI_doubleParameter::InitializeWidget() : allow going down to _bottom...
authoreap <eap@opencascade.com>
Mon, 4 Apr 2005 10:49:14 +0000 (10:49 +0000)
committereap <eap@opencascade.com>
Mon, 4 Apr 2005 10:49:14 +0000 (10:49 +0000)
src/SMESHGUI/SMESHGUI_aParameter.cxx

index cbd22eb3b196e78e890ee90ef29c28a67cdb56cb..7ba5e20dc774991f46940b9eccd2e857a4e2e84e 100644 (file)
@@ -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 );
   }