Salome HOME
Fix for the issue #2753 : error when dump/load script
[modules/shaper.git] / src / SketchSolver / SketchSolver_ConstraintEqual.cpp
index b2cfa0a712c752a6e11d73e5d6f2e5e7da97575a..d611b6f4faead9a23770c844015b3bb6bd099fa4 100644 (file)
@@ -1,7 +1,26 @@
-// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+// Copyright (C) 2014-2017  CEA/DEN, EDF R&D
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+//
+// See http://www.salome-platform.org/ or
+// email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
+//
 
 #include <SketchSolver_ConstraintEqual.h>
 #include <SketchSolver_Error.h>
+#include <PlaneGCSSolver_AttributeBuilder.h>
 
 #include <ModelAPI_AttributeRefAttr.h>
 #include <SketchPlugin_Line.h>
@@ -59,9 +78,10 @@ void SketchSolver_ConstraintEqual::getAttributes(
         myBaseConstraint->refattr(SketchPlugin_Constraint::ENTITY_A());
     FeaturePtr aLine1 = ModelAPI_Feature::feature(aRefLine1->object());
     if (aLine1) {
+      PlaneGCSSolver_AttributeBuilder aBuilder(myStorage);
       // store length of first line as a value for constraint
       // (will be used to make equal lengths of lines)
-      theValue = myStorage->entity(aLine1->attribute(SketchPlugin_Line::LENGTH_ID()));
+      theValue = aBuilder.createAttribute(aLine1->attribute(SketchPlugin_Line::LENGTH_ID()));
     }
     break;
   }