]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
Some little imps of messages when invalid meshName and fieldNames
authorageay <ageay>
Mon, 8 Apr 2013 16:38:08 +0000 (16:38 +0000)
committerageay <ageay>
Mon, 8 Apr 2013 16:38:08 +0000 (16:38 +0000)
src/MEDLoader/Swig/MEDLoaderCommon.i

index 44e29138121575d9f4c3d746a6d45d9b4cc6dc3b..3116572401c1af5492819a85dbeeea9ba503d7d9 100644 (file)
@@ -199,9 +199,9 @@ public:
          return ret;
        }
 
-       static PyObject *GetAllFieldIterations(const char *fileName, const char *meshName, const char *fieldName) throw(INTERP_KERNEL::Exception)
+       static PyObject *GetAllFieldIterations(const char *fileName, const char *fieldName) throw(INTERP_KERNEL::Exception)
        {
-         std::vector< std::pair< std::pair<int,int>, double> > res=MEDLoader::GetAllFieldIterations(fileName,meshName,fieldName);
+         std::vector< std::pair< std::pair<int,int>, double> > res=MEDLoader::GetAllFieldIterations(fileName,fieldName);
          PyObject *ret=PyList_New(res.size());
          int rk=0;
          for(std::vector< std::pair< std::pair<int,int>, double> >::const_iterator iter=res.begin();iter!=res.end();iter++,rk++)