Parcourir la 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 il y a 12 ans
Parent
commit
ad5cd61030
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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("\\");
 }