ソースを参照

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