Thanks!
I’m creating files that are imported properly. It’s just that the description: field is generated dynamically and should contain newlines. Anytime I created a field with ‘\n’ line endings within variables (QString) the stream would be stripped of the newlines. I belived I tried ‘\r\n’ too, but I’ll try that again
One variation was to construct
aDesc.append("DESCRIPTION:\n");
for ( const auto& i : slist )
{
aDesc.append( i + "\n" );
}
aDesc.append("END:VEVENT\n");
Another operated in << In any case, a simple QString with no newlines works without problems.
A QString, with no newlines, but with html in it becomes messed up.