# HG changeset patch # User Sebastien Jodogne # Date 1582705125 -3600 # Node ID ea62c89b264b14b4ef9637952e840170ac52349f # Parent c38811bf2992c4cf9bdaeb109053602794c8baa4 fix due to change in the orthanc framework diff -r c38811bf2992 -r ea62c89b264b Applications/Dicomizer.cpp --- a/Applications/Dicomizer.cpp Tue Feb 04 14:10:19 2020 +0100 +++ b/Applications/Dicomizer.cpp Wed Feb 26 09:18:45 2020 +0100 @@ -300,7 +300,8 @@ } } - std::auto_ptr dataset(Orthanc::FromDcmtkBridge::FromJson(json, true, true, Orthanc::Encoding_Latin1)); + std::auto_ptr dataset(Orthanc::FromDcmtkBridge::FromJson(json, true, true, Orthanc::Encoding_Latin1, + "" /* no private tag, thus no private creator */)); if (dataset.get() == NULL) { LOG(ERROR) << "Cannot convert to JSON file to a DICOM dataset: " << path; @@ -475,7 +476,8 @@ std::auto_ptr element(Orthanc::FromDcmtkBridge::FromJson( Orthanc::DicomTag(DCM_OpticalPathSequence.getGroup(), DCM_OpticalPathSequence.getElement()), - json, false, encoding)); + json, false, encoding, + "" /* no private tag, thus no private creator */)); if (!dataset.insert(element.release()).good()) { throw Orthanc::OrthancException(Orthanc::ErrorCode_InternalError);