]> Creatis software - gdcm.git/commitdiff
sub-minor ... and so forth
authorjpr <jpr>
Wed, 9 Jun 2004 10:44:20 +0000 (10:44 +0000)
committerjpr <jpr>
Wed, 9 Jun 2004 10:44:20 +0000 (10:44 +0000)
src/gdcmBinEntry.h
src/gdcmDocument.cxx
src/gdcmValEntry.h

index d13df27816446912d9a4c17e59f9d5da242aa57d..c93f24ef3a3a4492f609971d18695f53ddc9fd00 100644 (file)
@@ -39,7 +39,7 @@ private:
    
    /// \brief unsecure memory area to hold 'non string' values 
    /// (ie : Lookup Tables, overlays, icons)   
-   void *voidArea;
+  // void *voidArea;
 
 };
 
index e4e8fd1e8455797516faa2edc8b1498dadb1d122..33243b57512fa3a67ef428f3d06a1d7901bc1ac6 100644 (file)
@@ -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
index e27db5d9874f2b5cf847938b8a7404155ae41bea..5b19911572f618fe733b2e7b58b29087c216deca 100644 (file)
@@ -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: