]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Fix for formula definition with '=' in an integer widget
authorvsv <vsv@opencascade.com>
Tue, 21 Aug 2018 15:06:47 +0000 (18:06 +0300)
committervsv <vsv@opencascade.com>
Wed, 22 Aug 2018 09:55:03 +0000 (12:55 +0300)
src/ModuleBase/ModuleBase_WidgetDoubleValue.cpp
src/ModuleBase/ModuleBase_WidgetIntValue.cpp

index 2b832511509c45997884e5456c6efc67a715aac9..90e44ba7ccae8c953285cc1fcd675bc303d03725 100644 (file)
@@ -169,7 +169,7 @@ bool ModuleBase_WidgetDoubleValue::storeValueCustom()
       } else {
         ModuleBase_Tools::editParameter(myParameter, aText);
       }
-      aText = aText.split('=').at(0); // +"=";
+      aText = aText.split('=').at(0);
     } else if (myParameter.get()){
       // Nullyfy the parameter reference without deletion of the created
       myParameter = FeaturePtr();
index 095f123c7d1b7d5eb352b541e6f2688c45674608..72622070a8dc3c31a399f0fb345bf1ded6d29273 100644 (file)
@@ -157,7 +157,7 @@ bool ModuleBase_WidgetIntValue::storeValueCustom()
       } else {
         ModuleBase_Tools::editParameter(myParameter, aText);
       }
-      aText = aText.split('=').at(0) + "=";
+      aText = aText.split('=').at(0);
     } else if (myParameter.get()) {
       // Nullyfy the parameter reference without deletion of the created
       myParameter = FeaturePtr();