Browse Source

Use the standard dicom backslash delimeter rather than pipe

When multiple strings are concatentated in DICOM files, they
use the backslash, so expose the same convention here for
consistency.
Steve Pieper 12 years ago
parent
commit
ad5cd61030
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Libs/DICOM/Core/ctkDICOMDataset.cpp

+ 1 - 1
Libs/DICOM/Core/ctkDICOMDataset.cpp

@@ -446,7 +446,7 @@ QString ctkDICOMDataset::GetAllElementValuesAsString( const DcmTag& tag ) const
     }
   }
 
-  return qsl.join("|");
+  return qsl.join("\\");
 }