Salome HOME
Merge branch 'master' into BR_PYTHON_PLUGIN
[modules/shaper.git] / src / GeomData / GeomData_Point2D.cpp
index 7e6f889c41fb5698380bed1b4d2a99ee5da12fa5..924f80f8ca32bafd745151d4505d4dfd3033ab91 100644 (file)
@@ -21,7 +21,6 @@ void GeomData_Point2D::setValue(const double theX, const double theY)
 void GeomData_Point2D::setValue(const boost::shared_ptr<GeomAPI_Pnt2d>& thePoint)
 {
   setValue(thePoint->x(), thePoint->y());
-  owner()->data()->sendAttributeUpdated(this);
 }
 
 double GeomData_Point2D::x() const
@@ -37,7 +36,7 @@ double GeomData_Point2D::y() const
 boost::shared_ptr<GeomAPI_Pnt2d> GeomData_Point2D::pnt()
 {
   boost::shared_ptr<GeomAPI_Pnt2d> aResult(
-    new GeomAPI_Pnt2d(myCoords->Value(0), myCoords->Value(1)));
+      new GeomAPI_Pnt2d(myCoords->Value(0), myCoords->Value(1)));
   return aResult;
 }