]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
*** empty log message ***
authorageay <ageay>
Wed, 20 May 2009 08:45:49 +0000 (08:45 +0000)
committerageay <ageay>
Wed, 20 May 2009 08:45:49 +0000 (08:45 +0000)
src/MEDCoupling/MEDCouplingField.cxx
src/MEDCoupling/MEDCouplingField.hxx
src/ParaMEDMEM/DEC.cxx

index 1443a82a8f40514e96b87f1903e0a04291007b83..12414ce0ba54012d74332c3db08217fd3ebd8252 100644 (file)
@@ -45,7 +45,7 @@ void MEDCouplingField::updateTime()
     updateTimeWith(*_mesh);
 }
 
-TypeOfField MEDCouplingField::getEntity() const
+TypeOfField MEDCouplingField::getTypeOfField() const
 {
   return _type->getEnum();
 }
index 40a1b3857d87bd9e4f30585c56fe28dc0ccc7b2a..02688c1a542b78a9647261abf7c754b3f1bd6238 100644 (file)
@@ -43,7 +43,7 @@ namespace ParaMEDMEM
     const char *getDescription() const { return _desc.c_str(); }
     void setDescription(const char *desc) { _desc=desc; }
     const char *getName() const { return _name.c_str(); }
-    TypeOfField getEntity() const;
+    TypeOfField getTypeOfField() const;
     MEDCouplingMesh *buildSubMeshData(const int *start, const int *end, DataArrayInt *&di) const;
   protected:
     void updateTime();
index b17616c6da8b31cb76b0c321b87c0b3d33bd8047..a49a7c3d9473820076ec565522b6c0284d84233a 100644 (file)
@@ -216,7 +216,7 @@ namespace ParaMEDMEM
   {
     if (_local_field)
       {
-        TypeOfField entity = _local_field->getField()->getEntity();
+        TypeOfField entity = _local_field->getField()->getTypeOfField();
         if ( getMethod() == "P0" )
           {
             if ( entity != ON_CELLS )