From: vsr Date: Fri, 20 May 2016 12:03:01 +0000 (+0300) Subject: Fixed bug with displaying Creation Information for ShapeProcess function: wrong param... X-Git-Tag: V7_8_0rc1~1 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=e140eb64074088bfbabeb28a7836affd69eb6059;p=modules%2Fgeom.git Fixed bug with displaying Creation Information for ShapeProcess function: wrong parameters names are shown --- 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 ) == '.' ) {