kumquat-buildroot/package/qt5/qt5enginio/0001-Do-not-use-deprecated-QLinkedList.patch
Peter Seiderer c527ce8005 package/qt5: bump version to 5.14.2
qt5base:
 - rebased 0002-double-conversion-enable-for-microblaze.patch
 - rebased 0004-double-conversion-enable-for-xtensa.patch

qt5declarative:
 - rebased 0001-qsgtexture-fix-debug-build-with-uclibc.patch

qt5enginio:
 - add 0001-Do-not-use-deprecated-QLinkedList.patch

qt5tools:
 - add 0001-Disable-designer-tool-fixes-configure-error.patch
   ToDo: add proper fix/workaround

qt5webengine:
 - update 3rdparty license hash list and chromium-latest.inc file

qt5webkit:
 - add 0006-configure-remove-legacy-reference-to-qtConfig-mircli.patch

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2020-04-11 14:55:24 +02:00

40 lines
1.3 KiB
Diff
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

From ca81a62bb3f8ce67d564631bb8d4e11619acf430 Mon Sep 17 00:00:00 2001
From: Peter Seiderer <ps.report@gmx.net>
Date: Fri, 3 Apr 2020 19:59:47 +0200
Subject: [PATCH] Do not use deprecated QLinkedList
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Do not use (internally already by QT_NO_LINKED_LIST) deprecated QLinkeList,
use QList instead.
Fixes:
../../include/Enginio/1.6.3/Enginio/private/../../../../../src/enginio_client/enginioclient_p.h:293:5: error: QLinkedList does not name a type
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
src/enginio_client/enginioclient_p.h | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/enginio_client/enginioclient_p.h b/src/enginio_client/enginioclient_p.h
index 6b5dc53..f3fe68e 100644
--- a/src/enginio_client/enginioclient_p.h
+++ b/src/enginio_client/enginioclient_p.h
@@ -290,7 +290,11 @@ public:
QByteArray _backendId;
EnginioIdentity *_identity;
+#if defined(QT_NO_LINKED_LIST)
+ QList<QMetaObject::Connection> _connections;
+#else
QLinkedList<QMetaObject::Connection> _connections;
+#endif
QVarLengthArray<QMetaObject::Connection, 4> _identityConnections;
QUrl _serviceUrl;
QSharedPointer<QNetworkAccessManager> _networkManager;
--
2.26.0