mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#3910 Add compdat export test with 132 line length and 133 line length.
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user