]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/Model/Model_SelectionNaming.cpp
Salome HOME
Update line endings according to coding rules
[modules/shaper.git] / src / Model / Model_SelectionNaming.cpp
index bc88078c686a08dcc2ef7fce8ed6d588859b2755..abaad4b2f1ddd77d6f111c261aad04c044917ef5 100644 (file)
@@ -74,7 +74,8 @@ std::string Model_SelectionNaming::getShapeName(
           static const std::string aPostFix("_");
           TNaming_Iterator anItL(aNS);
           for(int i = 1; anItL.More(); anItL.Next(), i++) {
-            if(anItL.NewShape().IsSame(theShape)) { // in #1766 IsEqual produced no index of the face
+            // in #1766 IsEqual produced no index of the face
+            if(anItL.NewShape().IsSame(theShape)) {
               aName += aPostFix;
               aName += TCollection_AsciiString (i).ToCString();
               break;