]> Creatis software - gdcm.git/blobdiff - src/gdcmSQItem.cxx
remove 'tab' caracters
[gdcm.git] / src / gdcmSQItem.cxx
index 5e4812f28e8db2f67aa3c1e6c25b41e94bea3e20..82c4ed3dfb1f2986c1ebc1c517c4e36d80215346 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmSQItem.cxx,v $
   Language:  C++
-  Date:      $Date: 2004/06/22 14:16:45 $
-  Version:   $Revision: 1.12 $
+  Date:      $Date: 2004/06/23 02:13:14 $
+  Version:   $Revision: 1.15 $
   
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -90,11 +90,11 @@ gdcmSQItem::~gdcmSQItem()
       (Entry)->WriteCommonPart(fp, filetype);
 
       if (gdcmBinEntry* BinEntry = dynamic_cast< gdcmBinEntry* >(Entry) ) {
-         BinEntry->Write(fp,filetype);
+         BinEntry->Write(fp);
          return;
       }
       if (gdcmValEntry* ValEntry = dynamic_cast< gdcmValEntry* >(Entry) ) {
-         ValEntry->Write(fp,filetype);
+         ValEntry->Write(fp);
          return;
       }
       if (gdcmSeqEntry* SeqEntry = dynamic_cast< gdcmSeqEntry* >(Entry) ) {
@@ -188,6 +188,7 @@ bool gdcmSQItem::SetEntryByNumber(std::string val,guint16 group,
          return true;    
       }
    }
+   return false;
 }
 //-----------------------------------------------------------------------------
 // Protected