ExtensionSystem: Replace a deprecated endl

Change-Id: Ib6b297b0176518d3bc2db1e45476cc9e8c00b2e0
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
hjk
2020-02-19 09:29:49 +01:00
parent 006da25949
commit 89e2327f23

View File

@@ -1121,7 +1121,7 @@ static TestPlan generateCustomTestPlan(IPlugin *plugin,
<< "\".\nAvailable functions:\n"; << "\".\nAvailable functions:\n";
for (const QString &f : testFunctionsOfPluginObject) for (const QString &f : testFunctionsOfPluginObject)
out << " " << f << '\n'; out << " " << f << '\n';
out << endl; out << '\n';
} }
} }