cout << "call to " << qPrintable(fctName) << endl;\r
#endif\r
\r
+ cout << "creating input pattern" << endl;\r
lengthIP = -1;\r
foreach(AbstractInterface* iface, getControlInputs()) {\r
\r
QDomElement eltModif = nodeModif.toElement();\r
}\r
out << "-- Description : " << endl;\r
- out << reference->getDescription() << endl;\r
+ QStringList lines = reference->getDescription().split("\n");\r
+ foreach(QString line, lines) {\r
+ out << "-- " << line << endl;\r
+ }\r
out << "--" << endl;\r
QDomElement eltNote = eltLog.nextSiblingElement("notes");\r
QDomElement note = eltNote.firstChildElement();\r
QString noteTxt = note.text();\r
- out << "-- Notes :\n"<<noteTxt<<endl;\r
+ out << "-- Notes :" << endl;\r
+ lines = noteTxt.split("\n");\r
+ foreach(QString line, lines) {\r
+ out << "-- " << line << endl;\r
+ }\r
out << "--" << endl;\r
for(int i = 0; i < 50; i++) {\r
out << "--";\r