From e7f902971e8b8100f8ec5b77f2ce99fc2d8165b2 Mon Sep 17 00:00:00 2001 From: ageay Date: Mon, 8 Apr 2013 16:38:08 +0000 Subject: [PATCH] Some little imps of messages when invalid meshName and fieldNames --- src/MEDLoader/Swig/MEDLoaderCommon.i | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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++) -- 2.39.2