Fix FTBFS

QTextStreamFunctions::endl(QTextStream&)

simple but no buffer flush
This commit is contained in:
Laurent Trinques
2020-06-13 06:08:11 +02:00
parent f41b3ba26f
commit 2e8c7d5236

View File

@@ -66,7 +66,7 @@ bool nomenclature::saveToCSVFile()
}
if (file.open(QIODevice::WriteOnly | QIODevice::Text)){
QTextStream stream(&file);
stream << getNomenclature() << &Qt::endl(stream);
stream << getNomenclature() << "\n";
}
else return false;
}