rafaeldimauro / mdcm

Automatically exported from code.google.com/p/mdcm
0 stars 0 forks source link

Bug in DcmDataset.Dump() #4

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
There's a bug in DcmDataset, line 1096:

public void Dump(StringBuilder sb, String prefix, DicomDumpOptions options) {
            foreach (DcmItem item in _items.Values) {
                item.Dump(sb, prefix, DicomDumpOptions.Default);
                sb.AppendLine();
            }
        }

The functions always sends the default DumpOptions. Correct by replacing
with the options received in the function's arguments.

Original issue reported on code.google.com by RicardoS...@gmail.com on 20 Apr 2009 at 2:18

GoogleCodeExporter commented 8 years ago
Fixed in SVN 64

Original comment by colby.di...@gmail.com on 25 Sep 2009 at 5:04