comparison OrthancServer/ParsedDicomFile.cpp @ 1913:41e402cd7b3a

do not generate RC files for non-Windows builds
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 08 Feb 2016 11:33:39 +0100
parents 8b0ee8d5e6d0
children 6c73df12ca51
comparison
equal deleted inserted replaced
1912:2f415526fdcd 1913:41e402cd7b3a
360 try 360 try
361 { 361 {
362 DcmPixelData& pixelData = dynamic_cast<DcmPixelData&>(*element); 362 DcmPixelData& pixelData = dynamic_cast<DcmPixelData&>(*element);
363 if (blockUri == NULL) 363 if (blockUri == NULL)
364 { 364 {
365 // The user asks how many blocks are presents in this pixel data 365 // The user asks how many blocks are present in this pixel data
366 unsigned int blocks = GetPixelDataBlockCount(pixelData, transferSyntax); 366 unsigned int blocks = GetPixelDataBlockCount(pixelData, transferSyntax);
367 367
368 Json::Value result(Json::arrayValue); 368 Json::Value result(Json::arrayValue);
369 for (unsigned int i = 0; i < blocks; i++) 369 for (unsigned int i = 0; i < blocks; i++)
370 { 370 {