]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
Minor changes
authorapo <apo@opencascade.com>
Tue, 9 Aug 2005 09:50:45 +0000 (09:50 +0000)
committerapo <apo@opencascade.com>
Tue, 9 Aug 2005 09:50:45 +0000 (09:50 +0000)
src/CONVERTOR/VISU_MedConvertor.cxx

index 7df23f9935644035fa88f69696ac538afec33f0a..c718385581249dd850ed30c98a9ef748e219b180 100644 (file)
@@ -952,12 +952,12 @@ VISU_MedConvertor
          TCell2Connect& aCell2Connect = aGeom2Cell2Connect[aVGeom];
          aCell2Connect.resize(aNbElem);
 
-         for(int iElem = 0; iElem < aNbElem; iElem++) {
+         for(TInt iElem = 0; iElem < aNbElem; iElem++) {
            MED::TCConnSlice aConnSlice = aPolygoneInfo->GetConnSlice(iElem);
-           int aNbConn = aPolygoneInfo->GetNbConn(iElem);
+           TInt aNbConn = aPolygoneInfo->GetNbConn(iElem);
            TConnect& anArray = aCell2Connect[iElem];
            anArray.resize(aNbConn);
-           for(int iConn = 0; iConn < aNbConn; iConn++)
+           for(TInt iConn = 0; iConn < aNbConn; iConn++)
              anArray[iConn] = aConnSlice[iConn] - 1;
          }
        }