]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
Correct error message in DataArrayDouble::toNoInterlace
authorageay <ageay>
Thu, 21 Feb 2013 15:49:59 +0000 (15:49 +0000)
committerageay <ageay>
Thu, 21 Feb 2013 15:49:59 +0000 (15:49 +0000)
src/MEDCoupling/MEDCouplingMemArray.cxx

index 9446cea3f509a673cfdfba94da396591a1af8521..2f7b61dd11820a4de201f30fd3def6f42a2138fc 100644 (file)
@@ -847,7 +847,7 @@ DataArrayDouble *DataArrayDouble::fromNoInterlace() const throw(INTERP_KERNEL::E
 DataArrayDouble *DataArrayDouble::toNoInterlace() const throw(INTERP_KERNEL::Exception)
 {
   if(_mem.isNull())
-    throw INTERP_KERNEL::Exception("DataArrayDouble::fromNoInterlace : Not defined array !");
+    throw INTERP_KERNEL::Exception("DataArrayDouble::toNoInterlace : Not defined array !");
   double *tab=_mem.toNoInterlace(getNumberOfComponents());
   DataArrayDouble *ret=DataArrayDouble::New();
   ret->useArray(tab,true,CPP_DEALLOC,getNumberOfTuples(),getNumberOfComponents());
@@ -3886,7 +3886,7 @@ void DataArrayInt::splitByValueRange(const int *arrBg, const int *arrEnd,
  * value i.
  * indArr[v] where 'indArr' is defined by ['indArrBg','indArrEnd').
  * This method is safe that is to say if there is location i so that indArr[v] is not in [0,this->getNumberOfTuples()) an exception
- * will be thrown. An exception is also throw if there is a location i so that \a this[i] not in [0,distance(indArrBg,indArrEnd)) !
+ * will be thrown. An exception is also thrown if there is a location i so that \a this[i] not in [0,distance(indArrBg,indArrEnd)) !
  */
 DataArrayInt *DataArrayInt::transformWithIndArrR(const int *indArrBg, const int *indArrEnd) const throw(INTERP_KERNEL::Exception)
 {