From: ouv Date: Thu, 29 Jan 2009 14:16:47 +0000 (+0000) Subject: Fixed a problem with exporting of tables. X-Git-Tag: mergeto_trunk_16Feb09~2 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=be5d8efb26a05b114ff4e19f861358f5081be607;p=modules%2Fvisu.git Fixed a problem with exporting of tables. --- diff --git a/src/VISU_I/VISU_Table_i.cc b/src/VISU_I/VISU_Table_i.cc index b9f99c27..2516a24d 100644 --- a/src/VISU_I/VISU_Table_i.cc +++ b/src/VISU_I/VISU_Table_i.cc @@ -1371,7 +1371,8 @@ template bool ExportTableToFile(const TTableAttr& aTabAttr, if (!aLine.trimmed().isEmpty()) { aColTitle = aColumnTitles[j-1]; if (!aColTitle.trimmed().isEmpty()) - aLine = aLine + " #TITLE: " + aColTitle + "\n"; + aLine = aLine + " #TITLE: " + aColTitle; + aLine += "\n"; aFile.write(aLine.toLatin1()); } }