From: mpv Date: Wed, 26 Sep 2018 06:51:57 +0000 (+0300) Subject: Apply the coding rules standards X-Git-Tag: CEA_2018-2~70 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=5b5555341ff05692c42d0381a27852707bcc73ca;p=modules%2Fshaper.git Apply the coding rules standards --- diff --git a/src/Model/Model_AttributeSelection.cpp b/src/Model/Model_AttributeSelection.cpp index 96c947bf4..7b1259db3 100644 --- a/src/Model/Model_AttributeSelection.cpp +++ b/src/Model/Model_AttributeSelection.cpp @@ -409,7 +409,8 @@ std::shared_ptr Model_AttributeSelection::internalValue(CenterTyp return GeomShapePtr(); Handle(TDataStd_Integer) aWeakShapeType; aSelLab.FindAttribute(kWEAK_NAMING_SHAPETYPE, aWeakShapeType); - GeomAlgoAPI_NExplode aNExplode(aContextShape, GeomAPI_Shape::ShapeType(aWeakShapeType->Get())); + GeomAlgoAPI_NExplode aNExplode( + aContextShape, GeomAPI_Shape::ShapeType(aWeakShapeType->Get())); GeomShapePtr aValue = aNExplode.shape(aWeakId->Get()); return aValue; } @@ -680,7 +681,8 @@ bool Model_AttributeSelection::update() return false; Handle(TDataStd_Integer) aWeakShapeType; aSelLab.FindAttribute(kWEAK_NAMING_SHAPETYPE, aWeakShapeType); - GeomAlgoAPI_NExplode aNExplode(aContextShape, GeomAPI_Shape::ShapeType(aWeakShapeType->Get())); + GeomAlgoAPI_NExplode aNExplode( + aContextShape, GeomAPI_Shape::ShapeType(aWeakShapeType->Get())); GeomShapePtr aValue = aNExplode.shape(aWeakId->Get()); return setInvalidIfFalse(aSelLab, aValue.get() != NULL); }