Skip to content

Port a few QLinkedList to QList

Albert Astals Cid requested to merge work/aacid/few_linked_lists_less into master

QLinkedList is deprecated in later Qt5 and gone in Qt6

The 1:1 port is std::list but in this cases all we ever do is create the lists, push back to them, and pass then around to be read, for that a QList is more than enough

Merge request reports