From 5362cc9b3e07bc5190567461bacb66f3af225db1 Mon Sep 17 00:00:00 2001 From: John Thacker Date: Tue, 15 Nov 2022 21:58:03 -0500 Subject: [PATCH] Fix build on OpenSUSE 15.3 On older Qt versions (5.12?) QVector needs to be included, not just QObject. (It isn't needed on 5.15, possibly because QVector is an alias for QList in newer Qt versions.) --- ui/qt/utils/proto_node.h | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/qt/utils/proto_node.h b/ui/qt/utils/proto_node.h index a770656719..d6cf37978e 100644 --- a/ui/qt/utils/proto_node.h +++ b/ui/qt/utils/proto_node.h @@ -15,6 +15,7 @@ #include #include +#include class ProtoNode {