0003-add_missing_QVariantMap_include.patch to fix building with Qt 9.6.0 (both backported from https://github.com/YACReader/yacreader/issues/469). I thought this was an issue with compilation with GCC 15 but it actually turned out to be pre-exising, I guess. OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/yacreader?expand=0&rev=12
23 lines
858 B
Diff
23 lines
858 B
Diff
From 254652f03ec648423c9488929dc62fb3f4b817c7 Mon Sep 17 00:00:00 2001
|
|
From: "Jason E. Hale" <jhale@FreeBSD.org>
|
|
Date: Sat, 19 Apr 2025 06:25:11 -0400
|
|
Subject: [PATCH] Add missing include
|
|
|
|
Fixes build with Qt 6.9.0
|
|
---
|
|
YACReaderLibrary/comic_vine/model/response_parser.cpp | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/YACReaderLibrary/comic_vine/model/response_parser.cpp b/YACReaderLibrary/comic_vine/model/response_parser.cpp
|
|
index 033fd6077..dd2582120 100644
|
|
--- a/YACReaderLibrary/comic_vine/model/response_parser.cpp
|
|
+++ b/YACReaderLibrary/comic_vine/model/response_parser.cpp
|
|
@@ -2,6 +2,7 @@
|
|
#include <QDebug>
|
|
#include <QJsonDocument>
|
|
#include <QJsonParseError>
|
|
+#include <QVariantMap>
|
|
|
|
ResponseParser::ResponseParser(QObject *parent)
|
|
: QObject(parent), error(false), errorTxt("None"), numResults(-1), currentPage(-1), totalPages(-1)
|