]> Creatis software - gdcm.git/commitdiff
Fix trouble in Anonymize
authorjpr <jpr>
Wed, 21 Nov 2007 16:25:26 +0000 (16:25 +0000)
committerjpr <jpr>
Wed, 21 Nov 2007 16:25:26 +0000 (16:25 +0000)
src/gdcmFile.cxx

index acc5acfae523a4f2e110f0972f1f657e1b244aeb..d70964b18988dff5dc9e6285e183fad925aeb490 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmFile.cxx,v $
   Language:  C++
-  Date:      $Date: 2007/10/23 15:52:33 $
-  Version:   $Revision: 1.341 $
+  Date:      $Date: 2007/11/21 16:25:26 $
+  Version:   $Revision: 1.342 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -1913,12 +1913,13 @@ bool File::AnonymizeFile()
             gdcmWarningMacro( "You cannot 'Anonymize' a SeqEntry ");
             continue;
          }
-
+/*
          if ( dynamic_cast<DataEntry *>(d) )
          {
             gdcmWarningMacro( "To 'Anonymize' a DataEntry, better use AnonymizeNoLoad (FIXME) ");
             continue;
          }
+*/
          else
             SetEntryString ((*it).Value, (*it).Group, (*it).Elem);
       }