]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
IPAL20689 Problem with the Mutli-Transformation dialog
authordmv <dmv@opencascade.com>
Fri, 26 Dec 2008 11:24:41 +0000 (11:24 +0000)
committerdmv <dmv@opencascade.com>
Fri, 26 Dec 2008 11:24:41 +0000 (11:24 +0000)
src/BlocksGUI/BlocksGUI_TrsfDlg.cxx
src/TransformationGUI/TransformationGUI_MultiRotationDlg.cxx
src/TransformationGUI/TransformationGUI_MultiTranslationDlg.cxx

index dab52d971de022ecf01adf1494de8777b74c9beb..2796b523302a7fa16bb43b0bb72d9cdc68ef1bd5 100644 (file)
@@ -115,7 +115,7 @@ void BlocksGUI_TrsfDlg::Init()
   QMap<int, QtxDoubleSpinBox*>::iterator anIter;
   for (anIter = mySpinBox.begin(); anIter != mySpinBox.end(); ++anIter) {
     //anIter.data()->RangeStepAndValidator(1.0, 999.999, SpecificStep, 3);
-    initSpinBox(anIter.value(), 1.0, MAX_NUMBER, SpecificStep, 3);
+    initSpinBox(anIter.value(), 1.0, 999, SpecificStep, 3);
   }
 
   // signals and slots connections
index 62c05db8ac178d41a4cd30af6b939c54a2120393..5bce037a912a7dcab610a997fe2dc154ed78c50c 100644 (file)
@@ -127,14 +127,14 @@ void TransformationGUI_MultiRotationDlg::Init()
   double SpecificStep1 = 5;
   double SpecificStep2 = 1;
   // min, max, step and decimals for spin boxes & initial values
-  initSpinBox(GroupPoints->SpinBox_DX, 1.0, MAX_NUMBER, SpecificStep2, 10);
+  initSpinBox(GroupPoints->SpinBox_DX, 1.0, 999, SpecificStep2, 10);
   GroupPoints->SpinBox_DX->setValue(myNbTimes1);
   GroupPoints->SpinBox_DX->setDecimals(0);
 
   initSpinBox(GroupDimensions->SpinBox_DX1, COORD_MIN, COORD_MAX, SpecificStep1, 10); // VSR: TODO: DBL_DIGITS_DISPLAY
-  initSpinBox(GroupDimensions->SpinBox_DY1, 1.0, MAX_NUMBER, SpecificStep2, 10);
+  initSpinBox(GroupDimensions->SpinBox_DY1, 1.0, 999, SpecificStep2, 10);
   initSpinBox(GroupDimensions->SpinBox_DX2, COORD_MIN, COORD_MAX, step, 10); // VSR: TODO: DBL_DIGITS_DISPLAY
-  initSpinBox(GroupDimensions->SpinBox_DY2, 1.0, MAX_NUMBER, SpecificStep2, 10);
+  initSpinBox(GroupDimensions->SpinBox_DY2, 1.0, 999, SpecificStep2, 10);
   GroupDimensions->SpinBox_DX1->setValue(myAng);
   GroupDimensions->SpinBox_DY1->setValue(myNbTimes1);
   GroupDimensions->SpinBox_DX2->setValue(myStep);
index 77d5acc360e4407cfd1bb1e39c45257d552ad9da..d86cd23bd103b3603fd5c13942305c4a9343c40c 100644 (file)
@@ -133,15 +133,15 @@ void TransformationGUI_MultiTranslationDlg::Init()
   double SpecificStep = 1;
   // min, max, step and decimals for spin boxes & initial values
   initSpinBox(GroupPoints->SpinBox_DX, COORD_MIN, COORD_MAX, step, 10); // VSR: TODO: DBL_DIGITS_DISPLAY
-  initSpinBox(GroupPoints->SpinBox_DY, 1, MAX_NUMBER, SpecificStep, 10);
+  initSpinBox(GroupPoints->SpinBox_DY, 1, 999, SpecificStep, 10);
   GroupPoints->SpinBox_DX->setValue(myStepU);
   GroupPoints->SpinBox_DY->setValue(myNbTimesU);
   GroupPoints->SpinBox_DY->setDecimals(0);
 
   initSpinBox(GroupDimensions->SpinBox_DX1, COORD_MIN, COORD_MAX, step, 10); // VSR: TODO: DBL_DIGITS_DISPLAY
-  initSpinBox(GroupDimensions->SpinBox_DY1, 1, MAX_NUMBER, SpecificStep, 10);
+  initSpinBox(GroupDimensions->SpinBox_DY1, 1, 999, SpecificStep, 10);
   initSpinBox(GroupDimensions->SpinBox_DX2, COORD_MIN, COORD_MAX, step, 10); // VSR: TODO: DBL_DIGITS_DISPLAY
-  initSpinBox(GroupDimensions->SpinBox_DY2, 1, MAX_NUMBER, SpecificStep, 10);
+  initSpinBox(GroupDimensions->SpinBox_DY2, 1, 999, SpecificStep, 10);
   GroupDimensions->SpinBox_DX1->setValue(myStepU);
   GroupDimensions->SpinBox_DY1->setValue(myNbTimesU);
   GroupDimensions->SpinBox_DX2->setValue(myStepV);