From 5999b77894e01d12f31cbdbf4e35d04852fc12ca Mon Sep 17 00:00:00 2001 From: jpr Date: Sat, 5 Nov 2005 13:24:39 +0000 Subject: [PATCH] Debug vs Warning --- src/gdcmDictEntry.h | 10 +++++----- src/gdcmFile.cxx | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/gdcmDictEntry.h b/src/gdcmDictEntry.h index 588bc548..e2cecb8f 100644 --- a/src/gdcmDictEntry.h +++ b/src/gdcmDictEntry.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDictEntry.h,v $ Language: C++ - Date: $Date: 2005/10/21 15:34:56 $ - Version: $Revision: 1.42 $ + Date: $Date: 2005/11/05 13:24:39 $ + Version: $Revision: 1.43 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -32,7 +32,7 @@ namespace gdcm * i.e. the Group number * the Element number * - the VR (Value Representation) - * - the VM (Value Multplicity) + * - the VM (Value Multiplicity) * - the corresponding name in english */ class GDCM_EXPORT DictEntry : public DicomEntry @@ -71,10 +71,10 @@ protected: TagName const &name = GDCM_UNKNOWN); private: - /// \brief Value Multiplicity (e.g. "1", "1-n", "6") + /// \brief Value Multiplicity (e.g. "1", "1-n", "2-n", "6") TagName VM; - /// e.g. "Patient's Name" + /// \brief English name of the entry (e.g. "Patient's Name") TagName Name; }; } // end namespace gdcm diff --git a/src/gdcmFile.cxx b/src/gdcmFile.cxx index d760ae48..b21463b0 100644 --- a/src/gdcmFile.cxx +++ b/src/gdcmFile.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmFile.cxx,v $ Language: C++ - Date: $Date: 2005/11/04 16:00:01 $ - Version: $Revision: 1.301 $ + Date: $Date: 2005/11/05 13:24:39 $ + Version: $Revision: 1.302 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -1801,9 +1801,9 @@ void File::ReadEncapsulatedBasicOffsetTable() uint32_t val = BasicOffsetTableItemValue[i]; BasicOffsetTableItemValue[i] = ( (val<<24) | ((val<<8) & 0x00ff0000) | - ((val>>8) & 0x0000ff00) | (val>>24) ); + ( (val>>8) & 0x0000ff00) | (val>>24) ); #endif - gdcmWarningMacro( "Read one length for: " << + gdcmDebugMacro( "Read one length for: " << std::hex << BasicOffsetTableItemValue[i] ); } -- 2.48.1