comparison OrthancServer/OrthancFindRequestHandler.cpp @ 2335:174c3616ab6d

code review
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 17 Jul 2017 10:25:25 +0200
parents 5b7556568fa4
children 7284093111b0
comparison
equal deleted inserted replaced
2334:dd26536454a0 2335:174c3616ab6d
449 bool OrthancFindRequestHandler::FilterQueryTag(std::string& value /* can be modified */, 449 bool OrthancFindRequestHandler::FilterQueryTag(std::string& value /* can be modified */,
450 ResourceType level, 450 ResourceType level,
451 const DicomTag& tag, 451 const DicomTag& tag,
452 ModalityManufacturer manufacturer) 452 ModalityManufacturer manufacturer)
453 { 453 {
454 // wathever the manufacturer, remote the GenericGroupLength tags (http://dicom.nema.org/medical/dicom/current/output/chtml/part05/sect_7.2.html) 454 // Whatever the manufacturer, remove the GenericGroupLength tags
455 // http://dicom.nema.org/medical/dicom/current/output/chtml/part05/sect_7.2.html
456 // https://bitbucket.org/sjodogne/orthanc/issues/31/
455 if (tag.GetGroup() == 0x0000) 457 if (tag.GetGroup() == 0x0000)
456 { 458 {
457 return false; 459 return false;
458 } 460 }
459 461