]> Creatis software - gdcm.git/commitdiff
Offset set to 0 in the constructor to prevent any further missprinting
authorjpr <jpr>
Fri, 3 Sep 2004 15:09:30 +0000 (15:09 +0000)
committerjpr <jpr>
Fri, 3 Sep 2004 15:09:30 +0000 (15:09 +0000)
src/gdcmDocEntry.cxx

index e2a89b1def4d7184b45fda908a4f45795b6c1198..208bd1e6e1e15251d4ae66387c97ee452a2cc92c 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDocEntry.cxx,v $
   Language:  C++
-  Date:      $Date: 2004/08/31 14:24:47 $
-  Version:   $Revision: 1.16 $
+  Date:      $Date: 2004/09/03 15:09:30 $
+  Version:   $Revision: 1.17 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -36,7 +36,8 @@
 gdcmDocEntry::gdcmDocEntry(gdcmDictEntry* in)
 {
    ImplicitVR = false;
-   DictEntry = in;
+   DictEntry  = in;
+   Offset     = 0 ; // To avoid further missprinting
 }
 
 //-----------------------------------------------------------------------------