Bug #547 » dcmsr_charset.patch
| dcmsr/libsrc/dsrcodvl.cc | ||
|---|---|---|
|
OFBool DSRCodedEntryValue::isValid() const
|
||
|
{
|
||
|
/* tbd: there might be an issue with checking extended characters! */
|
||
|
return checkCurrentValue().good();
|
||
|
return OFTrue /* checkCurrentValue().good() */;
|
||
|
}
|
||
| ... | ... | |
|
OFCondition DSRCodedEntryValue::checkCurrentValue() const
|
||
|
{
|
||
|
return checkCode(CodeValue, CodingSchemeDesignator, CodingSchemeVersion, CodeMeaning);
|
||
|
return EC_Normal /* checkCode(CodeValue, CodingSchemeDesignator, CodingSchemeVersion, CodeMeaning) */;
|
||
|
}
|
||
| dcmsr/libsrc/dsrtypes.cc | ||
|---|---|---|
|
DCMSR_DEBUG("INTERNAL ERROR while checking value of " << tagName << " " << tag << " in " << module);
|
||
|
}
|
||
|
}
|
||
|
return result;
|
||
|
return OFTrue /* result */;
|
||
|
}
|
||