From: dbv Date: Mon, 23 Jan 2017 09:03:34 +0000 (+0300) Subject: Fix line length. X-Git-Tag: V_2.7.0~315 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=f6f8e03c800e6a5c9b9bee5d3bd0fa62d232a74d;p=modules%2Fshaper.git Fix line length. --- diff --git a/src/Model/Model_AttributeSelection.cpp b/src/Model/Model_AttributeSelection.cpp index 48ce322a4..39d1d4557 100644 --- a/src/Model/Model_AttributeSelection.cpp +++ b/src/Model/Model_AttributeSelection.cpp @@ -937,7 +937,8 @@ void Model_AttributeSelection::selectConstruction( TopoDS_Vertex aV = TopoDS::Vertex(anEdgeExp.Current()); TDF_Label aLab = selectionLabel().FindChild(aTagIndex); - std::string aName = "Vertex-" + Model_SelectionNaming::shortName(aConstr, aDelta / kSTART_VERTEX_DELTA); + std::string aName = "Vertex-" + + Model_SelectionNaming::shortName(aConstr, aDelta / kSTART_VERTEX_DELTA); TNaming_Builder aBuilder(aLab); aBuilder.Generated(aV); aMyDoc->addNamingName(aLab, aName.c_str());