Salome HOME
Issue #1834: Fix length of lines
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_SketchEntity.cpp
index 6b5beb942c7493884fbf9beb0863cafc382296ac..1a37de2cf30c3afc5a1ac79a81f9dbbf02940320 100644 (file)
@@ -16,7 +16,9 @@ void SketchPlugin_SketchEntity::initAttributes()
 
   initDerivedClassAttributes();
 
-  AttributePtr anAttr = data()->addAttribute(SketchPlugin_SketchEntity::COPY_ID(), ModelAPI_AttributeBoolean::typeId());
+  AttributePtr anAttr = data()->addAttribute(SketchPlugin_SketchEntity::COPY_ID(), 
+                                             ModelAPI_AttributeBoolean::typeId());
   anAttr->setIsArgument(false);
-  ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), SketchPlugin_SketchEntity::COPY_ID());
+  ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), 
+    SketchPlugin_SketchEntity::COPY_ID());
 }