From: jpr Date: Wed, 9 Jun 2004 10:44:20 +0000 (+0000) Subject: sub-minor ... and so forth X-Git-Tag: Version0.5.bp~143 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;ds=inline;h=054831cf90388689ca00fd96283258985ef4fc1f;p=gdcm.git sub-minor ... and so forth --- 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: