소스 검색

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 년 전
부모
커밋
ad5cd61030
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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("\\");
 }