Compilation with Qt6 and Visual Studio 2022

This commit is contained in:
Daniel Girardeau-Montaut
2025-09-21 22:48:31 +02:00
parent 6c39fddc27
commit 32c28372db
7 changed files with 26 additions and 22 deletions
+2 -2
View File
@@ -160,10 +160,10 @@ bool Feature::SaveSources(const Source::Set& sources, QString filename)
}
QTextStream stream(&file);
stream << "#Features_SF" << endl;
stream << "#Features_SF" << Qt::endl;
for (const Source& s : sources)
{
stream << s.type << ":" << s.name << endl;
stream << s.type << ":" << s.name << Qt::endl;
}
return true;