Qt5: 'endl' manipulator is deprecated with 5.15. Replace it with newlines.

This commit is contained in:
wmayer
2020-10-15 15:22:28 +02:00
parent d4c0baba0c
commit ef0fd3ca67
5 changed files with 38 additions and 38 deletions

View File

@@ -61,7 +61,7 @@ void Assistant::showDocumentation(const QString &page)
if (!page.isEmpty()) {
QTextStream str(proc);
str << QLatin1String("setSource qthelp://org.freecad.usermanual/doc/")
<< page << QLatin1Char('\n') << endl;
<< page << QLatin1String("\n\n");
}
}