Salome HOME
Merge 'master' branch into 'V9_dev' branch. V9_dev V9_0_0
authorrnv <rnv@opencascade.com>
Wed, 17 Jan 2018 13:11:21 +0000 (16:11 +0300)
committerrnv <rnv@opencascade.com>
Wed, 17 Jan 2018 13:11:42 +0000 (16:11 +0300)
28 files changed:
README
doc/dev/sphinx/fr/medcalc-develguide.rst
doc/dev/sphinx/fr/medop-prototype-develguide.rst
doc/dev/sphinx/medop-prototype-develguide.rst
doc/tut/addfields/README.txt
doc/tut/medcoupling/testmed_lena.py
doc/tut/medcoupling/testmed_simple.py
doc/tut/medcoupling/testpil.py
doc/tut/mergefields/simpledemo/README.txt
doc/tut/mergefields/splitdemo/README.txt
doc/tut/projection/demomed/README.txt
doc/tut/projection/demovtu/README.txt
idl/MEDCalculator.idl
src/MEDCalc/gui/WorkspaceController.hxx
src/MEDCalc/gui/XmedDataModel.hxx
src/MEDCalc/tui/medimages.py
src/MEDCalculator/MEDCalculatorBrowserField.cxx
src/MEDCalculator/MEDCalculatorDBField.cxx
src/MEDCalculator/Swig/MEDCalculator.i
src/MEDCouplingCorba/Client/MEDCouplingFieldDoubleClient.cxx
src/MEDCouplingCorba/Client/MEDCouplingFieldTemplateClient.cxx
src/MEDCouplingCorba/Client/MEDCouplingMeshClient.cxx
src/MEDCouplingCorba_Swig/Client/MEDCouplingClient.i
src/MEDCouplingCorba_Swig/MEDCouplingCorba.i
src/MEDGUI/MEDGUIFileContentDial.cxx
src/MEDGUI/MEDGUIFileContentDial.h
src/MEDGUI/MEDGUISelectComponents.cxx
src/MEDGUI/MEDGUISelectComponents.h

diff --git a/README b/README
index 410977a67139842bb3685c6fae91073413b4779c..ccb06fab264773bca795d7b55074d1e33c1f5b43 100644 (file)
--- a/README
+++ b/README
@@ -73,7 +73,7 @@ In order to avoid most of the problem the user or the installer should first
 check the HDF5HOME and the MED2HOME environment variables. This version of
 Med Memory with Med File V2.2.2, V2.2.3, as well as V2.3.0 but with the
 version of HDF5 V1.6.3. In the installation of Med File you should take care
-of the $HDF5HOME environement variable. This warning is especially intended
+of the $HDF5HOME environment variable. This warning is especially intended
 to the user of The Med Memory in stand alone (without the SALOME KERNEL
 component).
 
index 0037c72160763745c6023069ba77b06f2fb44df6..42289dc84d5bbf7e6e40684312c630808b796d95 100644 (file)
@@ -185,9 +185,9 @@ Ecrire un service CORBA qui retourne une structure CORBA:
     _fieldHandlerMap[fieldHandler->id] = fieldHandler;
 
     // >>> WARNING: CORBA struct specification indicates that the
-    // assignement acts as a desctructor for the structure that is
+    // assignment acts as a destructor for the structure that is
     // pointed to. The values of the fields are copy first in the new
-    // structure that receives the assignement and finally the initial
+    // structure that receives the assignment and finally the initial
     // structure is destroyed. In the present case, WE WANT to keep
     // the initial fieldHandler in the map. We must then make a deep
     // copy of the structure found in the map and return the copy. The
index 8a2ed7e29ea86ea2ea995c861d39b9fe24861d75..8d9d876ad6f5e68342771590c0da482054bdd985 100644 (file)
@@ -515,7 +515,7 @@ l'interface du servant ``SALOME_MED_MEDOP``):
     FIELD pow(in FIELD f, in long power) raises (SALOME::SALOME_Exception);
     /*! Linear transformation of the field f (factor*f+offset) */
     FIELD lin(in FIELD f, in double factor, in double offset) raises (SALOME::SALOME_Exception);
-    /*! Dublication of the field f */
+    /*! Duplication of the field f */
     FIELD dup(in FIELD f) raises (SALOME::SALOME_Exception);
 
 Cette interface est implémentée dans la classe C++ ``MEDOP_i`` du
index 524911f70530e07f52a744425d376ff159c8afce..1225b054e8f60cf43c539076754197f7286bba97 100644 (file)
@@ -515,7 +515,7 @@ l'interface du servant ``SALOME_MED_MEDOP``):
     FIELD pow(in FIELD f, in long power) raises (SALOME::SALOME_Exception);
     /*! Linear transformation of the field f (factor*f+offset) */
     FIELD lin(in FIELD f, in double factor, in double offset) raises (SALOME::SALOME_Exception);
-    /*! Dublication of the field f */
+    /*! Duplication of the field f */
     FIELD dup(in FIELD f) raises (SALOME::SALOME_Exception);
 
 Cette interface est implémentée dans la classe C++ ``MEDOP_i`` du
index 79eb80fb181d05bcecd898d0e888ea52f896ca24..febfc979422207f0e81f6eb8d2761c2a6329ffef 100644 (file)
@@ -1,4 +1,4 @@
-# You first have to set the shell environement for medcoupling
+# You first have to set the shell environment for medcoupling
 
 all:
        python addition.py
index 4054e08f5e8b673f1b247607cbfdc937a6a06ef5..3849d0f8217ab6e5b9f3f4aba0db79f37309c4a6 100755 (executable)
@@ -100,7 +100,7 @@ cmesh.setCoords(coordsX,coordsY)
 print("Imagem mesh dimension: %d"%cmesh.getSpaceDimension())
 
 # WARN: In the current state of development of MEDLoader, only
-# unstructured meshes are supported for writting function in med
+# unstructured meshes are supported for writing function in med
 # files. We just have to convert the cartesian mesh in an unstructured
 # mesh before creating the field.
 umesh=cmesh.buildUnstructured();
index e2d202cab1e91a202c3909bcf130bc727336073a..9801976d9a2f171a97dff7f6cebc4ed91d3bfa0a 100755 (executable)
@@ -69,7 +69,7 @@ print(cmesh.getSpaceDimension())
 # print(cmesh)
 
 # WARN: In the current state of development of MEDLoader, only
-# unstructured meshes are supported for writting function in med
+# unstructured meshes are supported for writing function in med
 # files. We just have to convert the cartesian mesh in an unstructured
 # mesh before creating the field.
 umesh=cmesh.buildUnstructured();
index c09a6b1656233f0396f25346a3ba83f771ab3450..c93ef1337f42ce8e7b2ab5098893da9a7cfe3e5a 100755 (executable)
@@ -96,7 +96,7 @@ def createMesh(meshname, sizeX, sizeY):
     print("Imagem mesh dimension: %d"%cmesh.getSpaceDimension())
     
     # WARN: In the current state of development of MEDLoader, only
-    # unstructured meshes are supported for writting function in med
+    # unstructured meshes are supported for writing function in med
     # files. We just have to convert the cartesian mesh in an unstructured
     # mesh before creating the field.
     umesh=cmesh.buildUnstructured();
index f13cb1651c5b1346347249ea42d7f0851c4ee782..68a6e207750bf715df88e5585b144c350234ea50 100644 (file)
@@ -1,4 +1,4 @@
-# You first have to set the shell environement for medcoupling
+# You first have to set the shell environment for medcoupling
 # (see medcoupling/env.sh)
 
 all:
index f251d44ed8384b1b7a386fc5c17f4b80923e160a..eb4336d82c1a2313cc44d9c5fba82c60ad6e5c4e 100644 (file)
@@ -1,4 +1,4 @@
-# You first have to set the shell environement for medcoupling
+# You first have to set the shell environment for medcoupling
 # (see medcoupling/env.sh)
 
 all:
index 1de344a07cc2baf6be0dfa050dea357c0bdd8fcd..69e324e6bcdafd4bc21bfb1c2b73538ffbf7a41f 100644 (file)
@@ -1,4 +1,4 @@
-# You first have to set the shell environement for medcoupling
+# You first have to set the shell environment for medcoupling
 # (see medcoupling/env.sh)
 
 all:
index 7b30a09df40bfbc3bbfa0f8be9f2bbcbb81e1ff2..b5a544964af2f08c2d6688c239f01105976936c6 100644 (file)
@@ -1,4 +1,4 @@
-# You first have to set the shell environement for medcoupling
+# You first have to set the shell environment for medcoupling
 # (see medcoupling/env.sh)
 
 all:
index e1048322a9807589b4383400b2a914769f8e1836..73e07383fb80d8c548dc25dfe54aa51bc86d32e1 100644 (file)
@@ -56,7 +56,7 @@ module MEDCALC
     /*! Linear transformation of the field f (factor*f+offset) */
     FieldHandler lin(in FieldHandler f, in double factor, in double offset)
       raises (SALOME::SALOME_Exception);
-    /*! Dublication of the field f */
+    /*! Duplication of the field f */
     FieldHandler dup(in FieldHandler f)
       raises (SALOME::SALOME_Exception);
 
index ea73983cba304e3f55f21c0036a5c65ce3501f7d..d07458ed48e8d70f8f98e803b0329d0e36097d01 100644 (file)
@@ -55,7 +55,7 @@ public:
   XmedConsoleDriver* getConsoleDriver() { return _consoleDriver; }
 
 public slots:
-  // Slots overiding TreeGuiManager
+  // Slots overriding TreeGuiManager
   void processItemList(QStringList itemNameIdList, int actionId);
 
   // Internal slots
index 43f2252909e22267ce8ced04c23f73f3761a3212..166f4b73ec176b9a7d8c23ea6c73220ee219fe90 100644 (file)
@@ -72,7 +72,7 @@ public:
 // then get the result you are interested in, using the corresponding
 // "result*" function.
 //
-// 2) Alternativly, you can just call directly the suitable master
+// 2) Alternatively, you can just call directly the suitable master
 // "get*" function to process and get the result you are interested
 // in.
 //
index 96a8892a25d06748d0394b0d1fc736e55d403d39..ce152d5a3e7515442b7a4f410a06e6fba30fe157 100644 (file)
@@ -86,7 +86,7 @@ class FieldBuilder:
         print("Imagem mesh dimension: %d"%cmesh.getSpaceDimension())
 
         # WARN: In the current state of development of MEDLoader, only
-        # unstructured meshes are supported for writting function in med
+        # unstructured meshes are supported for writing function in med
         # files. We just have to convert the cartesian mesh in an unstructured
         # mesh before creating the field.
         umesh=cmesh.buildUnstructured();
index ff8a351d05a18d5ef12ffa4f974ab9d249c8f643..1559c256177e5758b3aea74b2ec39f4d2bb2be85 100644 (file)
@@ -58,7 +58,7 @@ MEDCalculatorBrowserField::MEDCalculatorBrowserField(const char *fname, const ch
     }
   std::vector<TypeOfField> types=GetTypesOfField(fname,meshNames[0].c_str(),fieldName);
   if(types.empty())
-    throw INTERP_KERNEL::Exception("MEDCalculatorBrowserField::MEDCalculatorBrowserField : the file is not loadable using MED File 3 API ! Problably presence of field on edges faces...");
+    throw INTERP_KERNEL::Exception("MEDCalculatorBrowserField::MEDCalculatorBrowserField : the file is not loadable using MED File 3 API ! Probably presence of field on edges faces...");
   _type=types[0];//To improve
   MCAuto<MEDCouplingFieldDouble> tmpf;
   try
index 5c9a3aa252784cffa4b7dd99842c6c11d52edad8..e67662b0ae1375f9448f2b34997f30edf939446d 100644 (file)
@@ -219,7 +219,7 @@ const MEDCalculatorDBFieldReal& MEDCalculatorDBFieldReal::operator=(const MEDCal
   std::vector<int> ids2=other._t.getIds(other._time_steps.size());
   unsigned int sz=ids.size();
   if(sz!=ids2.size())
-    throw INTERP_KERNEL::Exception("FieldReal::operator= : Timesteps lengthes mismatch !");
+    throw INTERP_KERNEL::Exception("FieldReal::operator= : Timesteps lengths mismatch !");
   fetchData();
   other.fetchData();
   for(unsigned int i=0;i<sz;i++)
@@ -263,7 +263,7 @@ MEDCalculatorDBField *MEDCalculatorDBFieldReal::add(const MEDCalculatorDBFieldRe
   std::vector<int> ids=_t.getIds(_time_steps.size());
   std::vector<int> ids2=other._t.getIds(other._time_steps.size());
   if(ids.size()!=ids2.size())
-    throw INTERP_KERNEL::Exception("FieldReal::add : Timesteps lengthes mismatch !");
+    throw INTERP_KERNEL::Exception("FieldReal::add : Timesteps lengths mismatch !");
   int step=ids[0];
   int step2=ids2[0];
   const MEDCouplingMesh *mesh=_time_steps[step]->getMesh(_type,_file_name,_mesh_name,_field_name);
@@ -360,7 +360,7 @@ MEDCalculatorDBField *MEDCalculatorDBFieldReal::substract(const MEDCalculatorDBF
   std::vector<int> ids=_t.getIds(_time_steps.size());
   std::vector<int> ids2=other._t.getIds(other._time_steps.size());
   if(ids.size()!=ids2.size())
-    throw INTERP_KERNEL::Exception("FieldReal::substract : Timesteps lengthes mismatch !");
+    throw INTERP_KERNEL::Exception("FieldReal::substract : Timesteps lengths mismatch !");
   int step=ids[0];
   int step2=ids2[0];
   const MEDCouplingMesh *mesh=_time_steps[step]->getMesh(_type,_file_name,_mesh_name,_field_name);
@@ -410,7 +410,7 @@ MEDCalculatorDBField *MEDCalculatorDBFieldReal::multiply(const MEDCalculatorDBFi
   std::vector<int> ids=_t.getIds(_time_steps.size());
   std::vector<int> ids2=other._t.getIds(other._time_steps.size());
   if(ids.size()!=ids2.size())
-    throw INTERP_KERNEL::Exception("FieldReal::multiply : Timesteps lengthes mismatch !");
+    throw INTERP_KERNEL::Exception("FieldReal::multiply : Timesteps lengths mismatch !");
   int step=ids[0];
   int step2=ids2[0];
   const MEDCouplingMesh *mesh=_time_steps[step]->getMesh(_type,_file_name,_mesh_name,_field_name);
@@ -460,7 +460,7 @@ MEDCalculatorDBField *MEDCalculatorDBFieldReal::divide(const MEDCalculatorDBFiel
   std::vector<int> ids=_t.getIds(_time_steps.size());
   std::vector<int> ids2=other._t.getIds(other._time_steps.size());
   if(ids.size()!=ids2.size())
-    throw INTERP_KERNEL::Exception("FieldReal::divide : Timesteps lengthes mismatch !");
+    throw INTERP_KERNEL::Exception("FieldReal::divide : Timesteps lengths mismatch !");
   int step=ids[0];
   int step2=ids2[0];
   const MEDCouplingMesh *mesh=_time_steps[step]->getMesh(_type,_file_name,_mesh_name,_field_name);
@@ -495,7 +495,7 @@ MEDCalculatorDBField *MEDCalculatorDBFieldReal::dot(const MEDCalculatorDBFieldRe
   std::vector<int> ids2=other._t.getIds(other._time_steps.size());
   unsigned int sz=ids.size();
   if(sz!=ids2.size())
-    throw INTERP_KERNEL::Exception("FieldReal::dot : Timesteps lengthes mismatch !");
+    throw INTERP_KERNEL::Exception("FieldReal::dot : Timesteps lengths mismatch !");
   ret->_time_steps.resize(sz);
   for(unsigned int i=0;i<sz;i++)
     ret->_time_steps[i]=_time_steps[ids[i]]->dot(other._time_steps[ids2[i]],_c_labels.size(),_c,other._c_labels.size(),other._c);
@@ -515,7 +515,7 @@ MEDCalculatorDBField *MEDCalculatorDBFieldReal::crossProduct(const MEDCalculator
   std::vector<int> ids2=other._t.getIds(other._time_steps.size());
   unsigned int sz=ids.size();
   if(sz!=ids2.size())
-    throw INTERP_KERNEL::Exception("FieldReal::crossProduct : Timesteps lengthes mismatch !");
+    throw INTERP_KERNEL::Exception("FieldReal::crossProduct : Timesteps lengths mismatch !");
   ret->_time_steps.resize(sz);
   for(unsigned int i=0;i<sz;i++)
     ret->_time_steps[i]=_time_steps[ids[i]]->crossProduct(other._time_steps[ids2[i]],_c_labels.size(),_c,other._c_labels.size(),other._c);
@@ -770,14 +770,14 @@ std::vector<MEDCouplingFieldDouble *> MEDCalculatorDBFieldReal::getFields() cons
 std::string MEDCalculatorDBFieldReal::getInfoOnComponent(int i) const throw(INTERP_KERNEL::Exception)
 {
   if(i>=(int)_c_labels.size())
-    throw INTERP_KERNEL::Exception("MEDCalculatorDBFieldReal::getInfoOnComponent : sepcified id >= number of component !");
+    throw INTERP_KERNEL::Exception("MEDCalculatorDBFieldReal::getInfoOnComponent : specified id >= number of component !");
   return _c_labels[i];
 }
 
 void MEDCalculatorDBFieldReal::setInfoOnComponent(int i, const char *info) throw(INTERP_KERNEL::Exception)
 {
   if(i>=(int)_c_labels.size())
-    throw INTERP_KERNEL::Exception("MEDCalculatorDBFieldReal::setInfoOnComponent : sepcified id >= number of component !");
+    throw INTERP_KERNEL::Exception("MEDCalculatorDBFieldReal::setInfoOnComponent : specified id >= number of component !");
   _c_labels[i]=info;
 }
 
index adaebc43a90efbdcbd5d8927b5bc65ea86905baa..a35af03bc1bfe73c1829d003eab425f52f562735 100644 (file)
@@ -389,10 +389,10 @@ def MEDCouplingDataArrayIntTupleIdiv(self,*args):
 def MEDCouplingDataArrayIntTupleImod(self,*args):
     import _MEDCalculator
     return _MEDCalculator.DataArrayIntTuple____imod___(self, self, *args)
-def ParaMEDMEMDenseMatrixIadd(self,*args):
+def MEDCouplingDenseMatrixIadd(self,*args):
     import _MEDCalculator
     return _MEDCalculator.DenseMatrix____iadd___(self, self, *args)
-def ParaMEDMEMDenseMatrixIsub(self,*args):
+def MEDCouplingDenseMatrixIsub(self,*args):
     import _MEDCalculator
     return _MEDCalculator.DenseMatrix____isub___(self, self, *args)
 %}
index a41d60b913353e2bcbf7ab496b25ac3ee944d416..2fdc85c336dfb08de2258b38452f73e03b55b2fd 100644 (file)
@@ -68,7 +68,7 @@ MEDCouplingFieldDouble *MEDCouplingFieldDoubleClient::New(SALOME_MED::MEDCouplin
   ret->resizeForUnserialization(tinyLV,array0,arrays);
   SALOME_TYPES::ListOfLong *bigArr0;
   SALOME_TYPES::ListOfDouble2 *bigArr;
-  //3rd CORBA invokation to get big content
+  //3rd CORBA invocation to get big content
   fieldPtr->getSerialisationData(bigArr0,bigArr);
   if(bigArr0->length()!=0)
     {
index bbfe2f37c28e86f3c683b64f6e4321c70c563d69..5bbe7280c15c22f99a4126705fca3a4f035ae75b 100644 (file)
@@ -66,7 +66,7 @@ MEDCouplingFieldTemplate *MEDCouplingFieldTemplateClient::New(SALOME_MED::MEDCou
   DataArrayInt *array0;
   ret->resizeForUnserialization(tinyLV,array0);
   SALOME_TYPES::ListOfLong *bigArr0;
-  //3rd CORBA invokation to get big content
+  //3rd CORBA invocation to get big content
   fieldPtr->getSerialisationData(bigArr0);
   if(bigArr0->length()!=0)
     {
index 23c3ac61abfbee684cf9426b048b00de4feb221c..dee9e8ee6c48e9a13a53b8c71d483f62e8553f96 100644 (file)
@@ -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;
index 33e2263674e658677e92a748cbc908fa15ce50e4..d6fc029a27d05876adef34bf8cd3300e4ad55a57 100644 (file)
@@ -652,10 +652,10 @@ def MEDCouplingDataArrayIntTupleIdiv(self,*args):
 def MEDCouplingDataArrayIntTupleImod(self,*args):
     import _MEDCouplingClient
     return _MEDCouplingClient.DataArrayIntTuple____imod___(self, self, *args)
-def ParaMEDMEMDenseMatrixIadd(self,*args):
+def MEDCouplingDenseMatrixIadd(self,*args):
     import _MEDCouplingClient
     return _MEDCouplingClient.DenseMatrix____iadd___(self, self, *args)
-def ParaMEDMEMDenseMatrixIsub(self,*args):
+def MEDCouplingDenseMatrixIsub(self,*args):
     import _MEDCouplingClient
     return _MEDCouplingClient.DenseMatrix____isub___(self, self, *args)
 %}
index 848bdefb39d301315568b74dfb622d3c0ef2f21e..6efc0126b386ff864bb47b986014cb213de972d5 100644 (file)
@@ -402,10 +402,10 @@ def MEDCouplingDataArrayIntTupleIdiv(self,*args):
 def MEDCouplingDataArrayIntTupleImod(self,*args):
     import _MEDCouplingCorba
     return _MEDCouplingCorba.DataArrayIntTuple____imod___(self, self, *args)
-def ParaMEDMEMDenseMatrixIadd(self,*args):
+def MEDCouplingDenseMatrixIadd(self,*args):
     import _MEDCouplingCorba
     return _MEDCouplingCorba.DenseMatrix____iadd___(self, self, *args)
-def ParaMEDMEMDenseMatrixIsub(self,*args):
+def MEDCouplingDenseMatrixIsub(self,*args):
     import _MEDCouplingCorba
     return _MEDCouplingCorba.DenseMatrix____isub___(self, self, *args)
 %}
index 7936a3e3819dbd337006288cdfc45babde895ebf..fcde726ba1d1838fe6b81d88362b7a766fe1ddb4 100644 (file)
@@ -20,7 +20,7 @@
 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
-//  MED MEDGUI : MED component GUI implemetation
+//  MED MEDGUI : MED component GUI implementation
 //  File   : MEDGUIFileContentDial.cxx
 //  Module : MED
 #include "MEDGUIFileContentDial.h"
@@ -358,7 +358,7 @@ void MEDGUIFileContentDial::unselectAll()
 }
 
 //  Show in red the corresponding meshes from a field or a step or a field hoovered by mouse
-//  First clean alrady colored meshes list (color back in black and empty coloredMeshes vector)
+//  First clean already colored meshes list (color back in black and empty coloredMeshes vector)
 //  Then, get the id of the MEDGUILiteStruct corresponding to the currently hovered item
 //  Get corresponding meshes as string from the currently hovered item
 //  Get the corresponding root of the meshes QTreeWidget from the root of the fields QTreeWidget
index 2e0f61f08321a7048c1a19eab47c4b6d29133eea..d410dae0e24b0dcabf02ba078876d19e87bd0770 100644 (file)
@@ -20,7 +20,7 @@
 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
-//  MED MEDGUI : MED component GUI implemetation
+//  MED MEDGUI : MED component GUI implementation
 //  File   : MEDGUIFileContentDial.h
 //  Module : MED
 //
index 1b99b16e0ca4770d907211391a977ccb36771bbe..8d45860b5b8953aff45a38eef5294057b6f6f8a1 100644 (file)
@@ -17,7 +17,7 @@
 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
-//  MED MEDGUI : MED component GUI implemetation
+//  MED MEDGUI : MED component GUI implementation
 //  File   : MEDGUISelectComponents.cxx
 //  Module : MED
 //
index 36c1ed347d5d7fd511d55a56f9e3888c1da0e996..6b411a578ebbef2743f7a377a161318479bee22c 100644 (file)
@@ -20,7 +20,7 @@
 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
-//  MED MEDGUI : MED component GUI implemetation
+//  MED MEDGUI : MED component GUI implementation
 //  File   : MEDGUISelectComponents.h
 //  Module : MED
 //