Mercurial > hg > orthanc
comparison Plugins/Engine/OrthancPlugins.cpp @ 1860:c7d70f659190
DicomToJsonFormat_Simple -> DicomToJsonFormat_Human
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 02 Dec 2015 11:26:52 +0100 |
parents | 4e7c318a3f69 |
children | a7bea843a7bc |
comparison
equal
deleted
inserted
replaced
1859:4e7c318a3f69 | 1860:c7d70f659190 |
---|---|
1185 s = writer.write(instance.GetJson()); | 1185 s = writer.write(instance.GetJson()); |
1186 } | 1186 } |
1187 else | 1187 else |
1188 { | 1188 { |
1189 Json::Value simplified; | 1189 Json::Value simplified; |
1190 Toolbox::SimplifyTags(simplified, instance.GetJson(), DicomToJsonFormat_Simple); | 1190 Toolbox::SimplifyTags(simplified, instance.GetJson(), DicomToJsonFormat_Human); |
1191 s = writer.write(simplified); | 1191 s = writer.write(simplified); |
1192 } | 1192 } |
1193 | 1193 |
1194 *p.resultStringToFree = CopyString(s); | 1194 *p.resultStringToFree = CopyString(s); |
1195 return; | 1195 return; |