Salome HOME
Fixing of 0022619: [CEA 1094] Dump study in utf8:
authorakl <alexander.kovalev@opencascade.com>
Wed, 9 Jul 2014 13:57:38 +0000 (17:57 +0400)
committerakl <alexander.kovalev@opencascade.com>
Wed, 9 Jul 2014 13:57:38 +0000 (17:57 +0400)
replacement
# -*- coding: iso-8859-1 -*-
by
# -*- coding: utf-8 -*-

src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx

index 9eea0a2d39a9b430c559ba67a7dc6d5a8a0abcec..3918ade66ebb3a65b6140183bf1740a574559cd0 100644 (file)
@@ -1418,7 +1418,7 @@ bool SALOMEDSImpl_Study::DumpStudy(const std::string& thePath,
 std::string SALOMEDSImpl_Study::GetDumpStudyComment(const char* theComponentName)
 {
   std::stringstream txt;
-  txt << "# -*- coding: iso-8859-1 -*-" << std::endl << std::endl;
+  txt << "# -*- coding: utf-8 -*-" << std::endl << std::endl;
   txt << "###" << std::endl;
   txt << "### This file is generated automatically by SALOME v"
       << KERNEL_VERSION_STR