浏览代码

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("\\");
 }