From ddf499835a21348b252936d10fbf4305d3c1e3ad Mon Sep 17 00:00:00 2001 From: jpr Date: Fri, 3 Sep 2004 15:09:30 +0000 Subject: [PATCH] Offset set to 0 in the constructor to prevent any further missprinting --- src/gdcmDocEntry.cxx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/gdcmDocEntry.cxx b/src/gdcmDocEntry.cxx index e2a89b1d..208bd1e6 100644 --- a/src/gdcmDocEntry.cxx +++ b/src/gdcmDocEntry.cxx @@ -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 } //----------------------------------------------------------------------------- -- 2.48.1