]> Creatis software - gdcm.git/blobdiff - src/gdcmDictEntry.cxx
Propagate GDCM_DATA_ROOT into other tests
[gdcm.git] / src / gdcmDictEntry.cxx
index bdabafbec3e943cf05fa9fe32abaa4528e664e73..da623a2ef1dd79b6226bd3e1edb6e76e40e441ea 100644 (file)
@@ -1,9 +1,9 @@
 // gdcmDictEntry.cxx
 //-----------------------------------------------------------------------------
 #include "gdcmDictEntry.h"
+#include "gdcmDebug.h"
 
 #include <stdio.h>    // FIXME For sprintf
-#include "gdcmUtil.h"
 
 //-----------------------------------------------------------------------------
 // Constructor / Destructor
@@ -46,7 +46,7 @@ gdcmDictEntry::gdcmDictEntry(guint16 InGroup, guint16 InElement,
 TagKey gdcmDictEntry::TranslateToKey(guint16 group, guint16 element) {
        char trash[10];
        TagKey key;
-       // CLEAN ME: better call the iostream<< with the hex manipulator on.
+       // CLEANME: better call the iostream<< with the hex manipulator on.
        // This requires some reading of the stdlibC++ sources to make the
        // proper call (or copy).
        sprintf(trash, "%04x|%04x", group , element);