From f6f8e03c800e6a5c9b9bee5d3bd0fa62d232a74d Mon Sep 17 00:00:00 2001 From: dbv Date: Mon, 23 Jan 2017 12:03:34 +0300 Subject: [PATCH] Fix line length. --- src/Model/Model_AttributeSelection.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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()); -- 2.39.2