From: akl Date: Wed, 9 Jul 2014 13:57:38 +0000 (+0400) Subject: Fixing of 0022619: [CEA 1094] Dump study in utf8: X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=cdf60878d2c592aca4769c2927dc48d52e353635;p=modules%2Fyacs.git Fixing of 0022619: [CEA 1094] Dump study in utf8: replacement # -*- coding: iso-8859-1 -*- by # -*- coding: utf-8 -*- --- diff --git a/src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx b/src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx index 9eea0a2d3..3918ade66 100644 --- a/src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx +++ b/src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx @@ -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