X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=inline;f=src%2FPartSet%2FPartSet_WidgetPoint2dDistance.cpp;h=54887f018cc199c568914bd356ced275ec60ae39;hb=6a7b7e89852489a242ed25f5808d9306b00cc7d9;hp=b32ba144362f34571c5c8f14cbc66c950ecb06aa;hpb=7e85caf42f4f1b8f04444afc76a039036f27de9f;p=modules%2Fshaper.git diff --git a/src/PartSet/PartSet_WidgetPoint2dDistance.cpp b/src/PartSet/PartSet_WidgetPoint2dDistance.cpp index b32ba1443..54887f018 100644 --- a/src/PartSet/PartSet_WidgetPoint2dDistance.cpp +++ b/src/PartSet/PartSet_WidgetPoint2dDistance.cpp @@ -34,7 +34,6 @@ PartSet_WidgetPoint2dDistance::PartSet_WidgetPoint2dDistance(QWidget* theParent, // Reconnect to local slot disconnect(mySpinBox, SIGNAL(valueChanged(double)), this, SIGNAL(valuesChanged())); connect(mySpinBox, SIGNAL(valueChanged(double)), this, SLOT(onValuesChanged())); - connect(mySpinBox, SIGNAL(valueChanged(double)), this, SLOT(controlValuesChanged())); } PartSet_WidgetPoint2dDistance::~PartSet_WidgetPoint2dDistance() @@ -57,7 +56,7 @@ void PartSet_WidgetPoint2dDistance::setPoint(FeaturePtr theFeature, mySpinBox->blockSignals(true); mySpinBox->setValue(aRadius); mySpinBox->blockSignals(false); - emit valuesChanged(); + storeValue(); } }