From 5b5555341ff05692c42d0381a27852707bcc73ca Mon Sep 17 00:00:00 2001 From: mpv Date: Wed, 26 Sep 2018 09:51:57 +0300 Subject: [PATCH] Apply the coding rules standards --- src/Model/Model_AttributeSelection.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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); } -- 2.39.2