From: abv Date: Mon, 1 Feb 2016 14:33:25 +0000 (+0300) Subject: 0026415: XML should not break line in the middle of text. X-Git-Tag: V7_0_0rc~60 X-Git-Url: http://git.dev.opencascade.org/gitweb/?a=commitdiff_plain;h=6e448ab08126b00486bcb1de00596cf3a9640e30;p=occt-copy.git 0026415: XML should not break line in the middle of text. Line break between "previous" and "next" ids is replaced by additional spaces (these facilitate visual separation of the two sub-lists). --- diff --git a/src/XmlMFunction/XmlMFunction_GraphNodeDriver.cxx b/src/XmlMFunction/XmlMFunction_GraphNodeDriver.cxx index 60675819fb..883e4b2b69 100644 --- a/src/XmlMFunction/XmlMFunction_GraphNodeDriver.cxx +++ b/src/XmlMFunction/XmlMFunction_GraphNodeDriver.cxx @@ -184,7 +184,10 @@ void XmlMFunction_GraphNodeDriver::Paste (const Handle(TDF_Attribute)& theSource aValueStr += TCollection_AsciiString(ID); aValueStr += ' '; } - aValueStr += "\n"; + + // add more spaces between "previous" and "next" ids to make them easily + // recognizable for human + aValueStr += " "; // Next // ====