]> SALOME platform Git repositories - modules/smesh.git/blobdiff - src/DriverMED/DriverMED_Family.cxx
Salome HOME
med-2.1 file no longer supported
[modules/smesh.git] / src / DriverMED / DriverMED_Family.cxx
index 4d0f73ec59c0c693742b1dd1ce832861a91d93eb..f8e91f9561af5247e278f5a757e013c4ff97115b 100644 (file)
@@ -24,6 +24,7 @@
 //  File   : DriverMED_Family.cxx
 //  Author : Julia DOROVSKIKH
 //  Module : SMESH
+//  $Header$
 //
 #include "DriverMED_Family.h"
 #include "MED_Factory.hxx"
@@ -328,9 +329,9 @@ DriverMED_Family::GetFamilyInfo(const MED::PWrapper& theWrapper,
   string aValue = aStr.str();
   // PAL19785,0019867 - med forbids whitespace to be the last char in the name
   int maxSize;
-  if ( theWrapper->GetVersion() == MED::eV2_1 )
-    maxSize = MED::GetNOMLength<MED::eV2_1>();
-  else
+//   if ( theWrapper->GetVersion() == MED::eV2_1 )
+//     maxSize = MED::GetNOMLength<MED::eV2_1>();
+//   else
     maxSize = MED::GetNOMLength<MED::eV2_2>();
   int lastCharPos = min( maxSize, (int) aValue.size() ) - 1;
   while ( isspace( aValue[ lastCharPos ] ))