Qt 6.11 is out! See what's new in the release
blog
Encoding QDomText for "\n"
General and Desktop
1
Posts
1
Posters
1.4k
Views
1
Watching
-
@void QDomTextPrivate::save(QTextStream& s, int, int) const
{
QDomTextPrivate that = const_cast<QDomTextPrivate>(this);
s << encodeText(value, s, !(that->parent() && that->parent()->isElement()), false, true);
}@Like result is "\n" not encoded for QDomText (because performAVN = false). It is correct?
And why for encodeEOLs = true only "\r" is encoded?