From: adv Date: Mon, 9 Sep 2013 07:54:39 +0000 (+0000) Subject: Small correction for writing of data to file. X-Git-Tag: BR_hydro_v_0_1~56 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=010fbf49c40c5a990222597ad773a8877856e0a4;p=modules%2Fhydro.git Small correction for writing of data to file. --- diff --git a/src/HYDROData/HYDROData_Tool.cxx b/src/HYDROData/HYDROData_Tool.cxx index 0cd14427..9cb932d3 100644 --- a/src/HYDROData/HYDROData_Tool.cxx +++ b/src/HYDROData/HYDROData_Tool.cxx @@ -17,5 +17,5 @@ void HYDROData_Tool::WriteStringsToFile( QFile& theFile, return; QTextStream anOutStream( &theFile ); - anOutStream << aWriteStr << theSep; + anOutStream << aWriteStr << theSep << theSep; }