From: ouv Date: Thu, 29 Jan 2009 14:17:08 +0000 (+0000) Subject: Fixed a problem with exporting of tables. X-Git-Tag: V4_1_0_maintainance_20090206 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=18134e7e3403688b0e8e8a5b65a1605e52f052cc;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 4436d19c..70128669 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.stripWhiteSpace().isEmpty()) { aColTitle = aColumnTitles[j-1]; if (!aColTitle.stripWhiteSpace().isEmpty()) - aLine = aLine + " #TITLE: " + aColTitle + "\n"; + aLine = aLine + " #TITLE: " + aColTitle; + aLine += "\n"; aFile.writeBlock(aLine, aLine.length()); } }