From e140eb64074088bfbabeb28a7836affd69eb6059 Mon Sep 17 00:00:00 2001 From: vsr Date: Fri, 20 May 2016 15:03:01 +0300 Subject: [PATCH] Fixed bug with displaying Creation Information for ShapeProcess function: wrong parameters names are shown --- src/GEOMImpl/GEOMImpl_HealingDriver.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GEOMImpl/GEOMImpl_HealingDriver.cxx b/src/GEOMImpl/GEOMImpl_HealingDriver.cxx index 0ccbd4a92..1f0d1fc1f 100644 --- a/src/GEOMImpl/GEOMImpl_HealingDriver.cxx +++ b/src/GEOMImpl/GEOMImpl_HealingDriver.cxx @@ -1048,7 +1048,7 @@ GetCreationInformation(std::string& theOperationName, AddParam( theParams, "Operation", op ); for ( int iP = aParams->Lower(), nbP = aParams->Upper(); iP <= nbP; ++iP ) { - const TCollection_ExtendedString& par = aParams->Value(i); + const TCollection_ExtendedString& par = aParams->Value(iP); TCollection_AsciiString parAscii( par ); if ( par.Search( op ) == 1 && parAscii.Value( op.Length() + 1 ) == '.' ) { -- 2.39.2