Salome HOME
For compatibility with 7.4.0.
authorgeay <anthony.geay@cea.fr>
Thu, 12 Jun 2014 13:19:04 +0000 (15:19 +0200)
committergeay <anthony.geay@cea.fr>
Thu, 12 Jun 2014 13:19:04 +0000 (15:19 +0200)
src/ParaMEDMEM/TrioDEC.cxx
src/ParaMEDMEM/TrioDEC.hxx

index 9ae1734f545efbe623136bf91c04d6ef445bcd4f..6c9451c8798c2d81302449726e820aa290e381ac 100644 (file)
 using namespace ParaMEDMEM;
 using namespace ICoCo;
  
-TrioDEC::TrioDEC():_traduced_field(0)
+TrioDEC::TrioDEC():_my_traduced_field(0)
 {
 }
 
-TrioDEC::TrioDEC(ProcessorGroup& source_group, ProcessorGroup& target_group):InterpKernelDEC(source_group,target_group),_traduced_field(0)
+TrioDEC::TrioDEC(ProcessorGroup& source_group, ProcessorGroup& target_group):InterpKernelDEC(source_group,target_group),_my_traduced_field(0)
 {
 }
 
-TrioDEC::TrioDEC(const std::set<int>& src_ids, const std::set<int>& trg_ids, const MPI_Comm& world_comm):InterpKernelDEC(src_ids,trg_ids,world_comm),_traduced_field(0)
+TrioDEC::TrioDEC(const std::set<int>& src_ids, const std::set<int>& trg_ids, const MPI_Comm& world_comm):InterpKernelDEC(src_ids,trg_ids,world_comm),_my_traduced_field(0)
 {
 }
 
@@ -27,15 +27,15 @@ void TrioDEC::attachLocalField(ICoCo::TrioField *field)
   if(!field)
     throw INTERP_KERNEL::Exception("TrioDEC::attachLocalField : The input trio Field is NULL !");
   releaseInternalPointer();
-  _traduced_field=field->build_medfield();
-  DisjointDEC::attachLocalField(_traduced_field);
+  _my_traduced_field=field->build_medfield();
+  DisjointDEC::attachLocalField(_my_traduced_field);
 }
 
 void TrioDEC::releaseInternalPointer()
 {
-  if(_traduced_field)
-    delete _traduced_field;
-  _traduced_field=0;
+  if(_my_traduced_field)
+    delete _my_traduced_field;
+  _my_traduced_field=0;
 }
 
 TrioDEC::~TrioDEC()
index 4f8fc315dbd8c59452f74f8b33648a959c16923c..711bfe6615c904e556f22dd4a039ac092370b488 100644 (file)
@@ -26,7 +26,7 @@ namespace ParaMEDMEM
   private:
     void releaseInternalPointer();
   private :
-    ICoCo::MEDField *_traduced_field;
+    ICoCo::MEDField *_my_traduced_field;
   };
 }