Salome HOME
Typo and whitespace fixes by Kunda
[modules/med.git] / src / MEDCouplingCorba / Client / MEDCouplingMeshClient.cxx
index 63c348ef81401dcd4161575809c7c67477889e2c..58436cc3edb00b68936571da959207693e18f165 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2015  CEA/DEN, EDF R&D
+// Copyright (C) 2007-2016  CEA/DEN, EDF R&D
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -23,7 +23,7 @@
 #include "MEDCoupling1SGTUMeshClient.hxx"
 #include "MEDCoupling1DGTUMeshClient.hxx"
 #include "MEDCouplingExtrudedMeshClient.hxx"
-#include "MEDCouplingExtrudedMesh.hxx"
+#include "MEDCouplingMappedExtrudedMesh.hxx"
 #include "MEDCouplingCMeshClient.hxx"
 #include "MEDCouplingCurveLinearMeshClient.hxx"
 #include "MEDCouplingIMeshClient.hxx"
@@ -35,7 +35,7 @@
 
 #include <vector>
 
-using namespace ParaMEDMEM;
+using namespace MEDCoupling;
 
 MEDCouplingMesh *MEDCouplingMeshClient::New(SALOME_MED::MEDCouplingMeshCorbaInterface_ptr meshPtr)
 {
@@ -95,7 +95,7 @@ void MEDCouplingMeshClient::fillMeshFromCorbaData(MEDCouplingMesh *meshCpp, SALO
 {
   meshPtr->Register();
   //1st call to getTinyInfo to get tiny array of key integers value
-  //to corectly resize local copy of distant instance adressed by 'meshPtr'
+  //to correctly resize local copy of distant instance addressed by 'meshPtr'
   //1st value of returned array is the type of instance. Thanks to
   //CORBA and its type-check no use of this value is necessary.
   SALOME_TYPES::ListOfDouble *tinyD;
@@ -118,10 +118,10 @@ void MEDCouplingMeshClient::fillMeshFromCorbaData(MEDCouplingMesh *meshCpp, SALO
   delete tinyD;
   DataArrayInt* a1=DataArrayInt::New();
   DataArrayDouble* a2=DataArrayDouble::New();
-  //thanks to the entry point tinyV get from the 1st CORBA invokation,
+  //thanks to the entry point tinyV get from the 1st CORBA invocation,
   //resizing a1,a2 and sts.
   std::vector<std::string> uselessVector;
-  //vector 'uselessVector' is useless thanks to CORBA that , contrary to MPI, does not need to allocate right length of arrays before invokation
+  //vector 'uselessVector' is useless thanks to CORBA that , contrary to MPI, does not need to allocate right length of arrays before invocation
   meshCpp->resizeForUnserialization(tinyV,a1,a2,uselessVector);
   SALOME_TYPES::ListOfLong *a1Corba;
   SALOME_TYPES::ListOfDouble *a2Corba;