From 63a559845ce33b054d3f6d8b3c2b80f05eeffb16 Mon Sep 17 00:00:00 2001 From: Sona Kurazyan Date: Wed, 29 Jan 2020 11:13:31 +0100 Subject: Remove QLinkedList QLinkedList has been moved to Qt5Compat. Remove and stop mentioning it in docs, examples (the docs & examples for QLinkedList itself will be moved to Qt5Compat) and remove the corresponding tests. Also remove QT_NO_LINKED_LIST, since it's not needed anymore. Task-number: QTBUG-81630 Task-number: QTBUG-80312 Change-Id: I4a8f1105cb60aa87e7fd67e901ec1a27c489aa31 Reviewed-by: Lars Knoll --- src/plugins/platforms/xcb/qxcbeventqueue.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/plugins') diff --git a/src/plugins/platforms/xcb/qxcbeventqueue.cpp b/src/plugins/platforms/xcb/qxcbeventqueue.cpp index 759ee3cc95..f0cb5edd2a 100644 --- a/src/plugins/platforms/xcb/qxcbeventqueue.cpp +++ b/src/plugins/platforms/xcb/qxcbeventqueue.cpp @@ -62,8 +62,8 @@ static bool dispatcherOwnerDestructing = false; when accessing the tail node. It does not dequeue the last node and does not access (read or write) the tail node's 'next' member. This lets the reader add more items at the same time as the main thread is dequeuing nodes from - the head. A custom linked list implementation is used, because QLinkedList - does not have any thread-safety guarantees and the custom list is more + the head. A custom linked list implementation is used, because std::list + does not have any thread-safety guarantees. The custom list is lightweight - no reference counting, back links, etc. Memory management: -- cgit v1.2.3