]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Fix for parameters in double value editors
authorsbh <sergey.belash@opencascade.com>
Mon, 13 Apr 2015 12:45:33 +0000 (15:45 +0300)
committersbh <sergey.belash@opencascade.com>
Mon, 13 Apr 2015 12:45:33 +0000 (15:45 +0300)
src/ModuleBase/ModuleBase_WidgetDoubleValue.cpp

index 20f5224844cb33ea30be3c603640086a5fcd8071..d3d777e33fe59467ebf04f8aaeee260bbe664c71 100644 (file)
@@ -114,7 +114,7 @@ bool ModuleBase_WidgetDoubleValue::storeValueCustom() const
   DataPtr aData = myFeature->data();
   AttributeDoublePtr aReal = aData->real(attributeID());
   aReal->setValue(mySpinBox->value());
-  std::string aTextRepr;
+  std::string aTextRepr = aReal->text();
   if (mySpinBox->hasVariable()) {
     aTextRepr = mySpinBox->text().toStdString();
   }