1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +03:00

0026720: Coding, STEP - non-conformant names of class fields

Names of class fields and method parameters are fixed according to coding standard.
This commit is contained in:
rkv
2015-10-08 10:06:55 +03:00
committed by bugmaster
parent 980d161f03
commit 2f220b97b7
47 changed files with 371 additions and 324 deletions

View File

@@ -103,7 +103,7 @@ void RWStepDimTol_RWDatumReferenceElement::ReadStep (const Handle(StepData_StepR
Standard_Integer nbElements = data->NbParams(nbSub);
aModifiers = new StepDimTol_HArray1OfDatumReferenceModifier (1, nbElements);
for (Standard_Integer i = 1; i <= nbElements; i++) {
Interface_ParamType aType = data->ParamType (nbSub, i);
aType = data->ParamType (nbSub, i);
if (aType == Interface_ParamIdent) {
Handle(StepDimTol_DatumReferenceModifierWithValue) aDRMWV;
data->ReadEntity(nbSub, i,"datum_reference_modifier_with_value", ach, STANDARD_TYPE(StepDimTol_DatumReferenceModifierWithValue), aDRMWV);