#3910 Add compdat export test with 132 line length and 133 line length.

This commit is contained in:
Gaute Lindkvist
2018-12-20 10:18:13 +01:00
parent 66c58bad28
commit 5c9b8b36f9
2 changed files with 8 additions and 8 deletions

View File

@@ -145,7 +145,7 @@ void RifEclipseDataTableFormatter::outputBuffer()
else if (line.lineType == CONTENTS)
{
QString lineText = m_tableRowPrependText;
QString appendText = (line.appendTextSet ? line.appendText : m_tableRowAppendText) + "\n";
QString appendText = (line.appendTextSet ? line.appendText : m_tableRowAppendText);
for (size_t i = 0; i < line.data.size(); ++i)
{
@@ -163,7 +163,7 @@ void RifEclipseDataTableFormatter::outputBuffer()
lineText += column;
}
m_out << lineText << appendText;
m_out << lineText << appendText << "\n";
}
}
m_columns.clear();