1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0023339: The 'strcmp' function returns 0 if corresponding strings are equal. (2)

Checking if the return value from 'strcmp' is '0'.
This commit is contained in:
Pawel 2012-07-20 16:28:44 +02:00 committed by Pawel Kowalski
parent 8d3d66d629
commit 5dc6fb935c
2 changed files with 6 additions and 6 deletions

View File

@ -48,9 +48,9 @@ void RWStepElement_RWElementDescriptor::ReadStep (const Handle(StepData_StepRead
StepElement_ElementOrder aTopologyOrder;
if (data->ParamType (num, 1) == Interface_ParamEnum) {
Standard_CString text = data->ParamCValue(num, 1);
if (strcmp(text, ".LINEAR.")) aTopologyOrder = StepElement_Linear;
else if (strcmp(text, ".QUADRATIC.")) aTopologyOrder = StepElement_Quadratic;
else if (strcmp(text, ".CUBIC.")) aTopologyOrder = StepElement_Cubic;
if (strcmp(text, ".LINEAR.") == 0) aTopologyOrder = StepElement_Linear;
else if (strcmp(text, ".QUADRATIC.") == 0) aTopologyOrder = StepElement_Quadratic;
else if (strcmp(text, ".CUBIC.") == 0) aTopologyOrder = StepElement_Cubic;
else ach->AddFail("Parameter #1 (topology_order) has not allowed value");
}
else ach->AddFail("Parameter #1 (topology_order) is not enumeration");

View File

@ -78,9 +78,9 @@ void RWStepFEA_RWFeaAxis2Placement3d::ReadStep (const Handle(StepData_StepReader
StepFEA_CoordinateSystemType aSystemType;
if (data->ParamType (num, 5) == Interface_ParamEnum) {
Standard_CString text = data->ParamCValue(num, 5);
if (strcmp(text, ".CARTESIAN.")) aSystemType = StepFEA_Cartesian;
else if (strcmp(text, ".CYLINDRICAL.")) aSystemType = StepFEA_Cylindrical;
else if (strcmp(text, ".SPHERICAL.")) aSystemType = StepFEA_Spherical;
if (strcmp(text, ".CARTESIAN.") == 0) aSystemType = StepFEA_Cartesian;
else if (strcmp(text, ".CYLINDRICAL.") == 0) aSystemType = StepFEA_Cylindrical;
else if (strcmp(text, ".SPHERICAL.") == 0) aSystemType = StepFEA_Spherical;
else ach->AddFail("Parameter #5 (system_type) has not allowed value");
}
else ach->AddFail("Parameter #5 (system_type) is not enumeration");