From 054831cf90388689ca00fd96283258985ef4fc1f Mon Sep 17 00:00:00 2001 From: jpr Date: Wed, 9 Jun 2004 10:44:20 +0000 Subject: [PATCH] sub-minor ... and so forth --- src/gdcmBinEntry.h | 2 +- src/gdcmDocument.cxx | 2 +- src/gdcmValEntry.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gdcmBinEntry.h b/src/gdcmBinEntry.h index d13df278..c93f24ef 100644 --- a/src/gdcmBinEntry.h +++ b/src/gdcmBinEntry.h @@ -39,7 +39,7 @@ private: /// \brief unsecure memory area to hold 'non string' values /// (ie : Lookup Tables, overlays, icons) - void *voidArea; + // void *voidArea; }; diff --git a/src/gdcmDocument.cxx b/src/gdcmDocument.cxx index e4e8fd1e..33243b57 100644 --- a/src/gdcmDocument.cxx +++ b/src/gdcmDocument.cxx @@ -1023,7 +1023,7 @@ bool gdcmDocument::WriteEntries(FILE *_fp,FileType type) if ((*tag2).second->GetGroup() < 0x0008) // Ignore pure DICOM V3 groups continue; - if ((*tag2).second->GetElement() %2) + if ((*tag2).second->GetGroup() %2) // Ignore the "shadow" groups continue; if ((*tag2).second->GetVR() == "SQ" ) // ignore Sequences diff --git a/src/gdcmValEntry.h b/src/gdcmValEntry.h index e27db5d9..5b199115 100644 --- a/src/gdcmValEntry.h +++ b/src/gdcmValEntry.h @@ -34,7 +34,7 @@ public: protected: /// \brief for 'non string' values. Will be move to gdcmBinEntry, later - char* voidArea; // clean it out later + void* voidArea; // clean it out later private: -- 2.45.1