From: mpv Date: Wed, 24 May 2017 12:07:40 +0000 (+0300) Subject: Minor corrections: coding rules X-Git-Tag: V_2.7.1.1~23 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=ff4d5d0f42cf5d24b86b2bd2b6e1f58e74f52032;p=modules%2Fshaper.git Minor corrections: coding rules --- diff --git a/src/Model/Model_ResultConstruction.cpp b/src/Model/Model_ResultConstruction.cpp index 18d3cdcf8..a13c38643 100644 --- a/src/Model/Model_ResultConstruction.cpp +++ b/src/Model/Model_ResultConstruction.cpp @@ -227,9 +227,7 @@ std::string fullName(CompositeFeaturePtr theComposite, const TopoDS_Shape& theSu } std::stringstream aName; // #1839 : do not store name of the feature in the tree, since this name could be changed - //aName<name(); - if (theSubShape.ShapeType() != TopAbs_COMPOUND) { // compound means the whole result for construction - //aName<<"/"; + if (theSubShape.ShapeType() != TopAbs_COMPOUND) { // compound means the whole construction result if (theSubShape.ShapeType() == TopAbs_FACE) aName<<"Face"; else if (theSubShape.ShapeType() == TopAbs_WIRE) aName<<"Wire"; else if (theSubShape.ShapeType() == TopAbs_EDGE) aName<<"Edge";