Skip to content

Port away from more QLinkedLists

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

QLinkedList is gone from Qt6

The 1:1 port is std::list but we don't need iterator stability on removal/insertion so just port to QList (one case to QVector since QList needs a copy constructor)

Merge request reports