comparison Core/DicomParsing/FromDcmtkBridge.cpp @ 3708:bc25deb40302

typo
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 28 Feb 2020 11:53:23 +0100
parents fd302ec6a502
children 2a170a8f1faf
comparison
equal deleted inserted replaced
3704:58f92b1c8061 3708:bc25deb40302
1402 #else 1402 #else
1403 DcmTag key(tag.GetGroup(), tag.GetElement()); 1403 DcmTag key(tag.GetGroup(), tag.GetElement());
1404 if (tag.IsPrivate()) 1404 if (tag.IsPrivate())
1405 { 1405 {
1406 // https://forum.dcmtk.org/viewtopic.php?t=4527 1406 // https://forum.dcmtk.org/viewtopic.php?t=4527
1407 LOG(WARNING) << "You are using DCMTK <= 3.6.0: All the private tags " 1407 LOG(WARNING) << "You are using DCMTK <= 3.6.1: All the private tags "
1408 "are considered as having a binary value representation"; 1408 "are considered as having a binary value representation";
1409 key.setPrivateCreator(privateCreator.c_str()); 1409 key.setPrivateCreator(privateCreator.c_str());
1410 return new DcmOtherByteOtherWord(key); 1410 return new DcmOtherByteOtherWord(key);
1411 } 1411 }
1412 else 1412 else