mirror of
https://github.com/jellyfin/jellyfin-media-player.git
synced 2025-02-17 04:17:44 +00:00
![Eivind Uggedal](/assets/img/avatar_default.png)
- QTextStream::endl was deprecated in 5.15 and removed in 6.0. The new alternative, QT::endl is not available < 5.15, so just use literal newlines and flush where appropirate (QT::endl appends newline and flushes the stream). QTextStream should handle the "\n" to "\r\n" translation internally. - QTextStream::flush was also deprecated in 5.15 and the alternative QT::flush is also not available in < 5.15. Just flush the stream directly.