From: ageay Date: Mon, 8 Apr 2013 16:38:08 +0000 (+0000) Subject: Some little imps of messages when invalid meshName and fieldNames X-Git-Tag: V6_main_FINAL~182 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=e7f902971e8b8100f8ec5b77f2ce99fc2d8165b2;p=tools%2Fmedcoupling.git Some little imps of messages when invalid meshName and fieldNames --- diff --git a/src/MEDLoader/Swig/MEDLoaderCommon.i b/src/MEDLoader/Swig/MEDLoaderCommon.i index 44e291381..311657240 100644 --- a/src/MEDLoader/Swig/MEDLoaderCommon.i +++ b/src/MEDLoader/Swig/MEDLoaderCommon.i @@ -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, double> > res=MEDLoader::GetAllFieldIterations(fileName,meshName,fieldName); + std::vector< std::pair< std::pair, double> > res=MEDLoader::GetAllFieldIterations(fileName,fieldName); PyObject *ret=PyList_New(res.size()); int rk=0; for(std::vector< std::pair< std::pair, double> >::const_iterator iter=res.begin();iter!=res.end();iter++,rk++)