]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Issue #806: the prevision is set to 15 globally in all spin boxes
authorasl <asl@opencascade.com>
Thu, 13 Aug 2015 04:47:00 +0000 (07:47 +0300)
committerasl <asl@opencascade.com>
Thu, 13 Aug 2015 05:18:45 +0000 (08:18 +0300)
src/ModuleBase/ModuleBase_DoubleSpinBox.h
src/ModuleBase/ModuleBase_ParamSpinBox.h

index 555cafc36fdeec085b8444ba80c27f7a384732e3..7b910797ed42008adc62d9f1b68f4fb3d43975c1 100644 (file)
@@ -21,7 +21,7 @@ class MODULEBASE_EXPORT ModuleBase_DoubleSpinBox : public QDoubleSpinBox
 Q_OBJECT
 
  public:
-  explicit ModuleBase_DoubleSpinBox(QWidget* theParent = 0, int thePrecision = 6);
+  explicit ModuleBase_DoubleSpinBox( QWidget* theParent = 0, int thePrecision = 15 );
   virtual ~ModuleBase_DoubleSpinBox();
 
   /// Returns true if the control is clear
index 46af290922d448a1216739cdb1db4184c2171407..b150930877692a8cc05d43f3a3430432bc516d0f 100644 (file)
@@ -15,7 +15,7 @@ class MODULEBASE_EXPORT ModuleBase_ParamSpinBox : public ModuleBase_DoubleSpinBo
   enum State { Invalid = 0, NoVariable, Incompatible, Acceptable };
 
 public:
-  explicit ModuleBase_ParamSpinBox(QWidget* theParent = 0, int thePrecision = 6);
+  explicit ModuleBase_ParamSpinBox( QWidget* theParent = 0, int thePrecision = 15 );
   virtual ~ModuleBase_ParamSpinBox();
 
   virtual void stepBy(int);