summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2023-12-19 19:51:13 +0100
committerPacho Ramos <pacho@gentoo.org>2023-12-20 11:00:02 +0100
commit4ee3a978fa63024ea4e48633beb81efbb0c8de4f (patch)
tree42593059fb3825f35947f051af83b0142615c38a
parentgames-arcade/gnome-nibbles: unkeyword 4.0.1 for ~loong (diff)
downloadgentoo-4ee3a978.tar.gz
gentoo-4ee3a978.tar.bz2
gentoo-4ee3a978.zip
x11-themes/QGnomePlatform: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/34371 Signed-off-by: Pacho Ramos <pacho@gentoo.org>
-rw-r--r--x11-themes/QGnomePlatform/files/QGnomePlatform-0.9.2-gtk3-conflict.patch57
1 files changed, 0 insertions, 57 deletions
diff --git a/x11-themes/QGnomePlatform/files/QGnomePlatform-0.9.2-gtk3-conflict.patch b/x11-themes/QGnomePlatform/files/QGnomePlatform-0.9.2-gtk3-conflict.patch
deleted file mode 100644
index 29a87aee6f61..000000000000
--- a/x11-themes/QGnomePlatform/files/QGnomePlatform-0.9.2-gtk3-conflict.patch
+++ /dev/null
@@ -1,57 +0,0 @@
-From d86d6baab74c3e69094083715ffef4aef2e516dd Mon Sep 17 00:00:00 2001
-From: Jan Grulich <jgrulich@redhat.com>
-Date: Fri, 11 Aug 2023 13:45:41 +0200
-Subject: [PATCH] Do not use "gtk3" key to avoid conflict with QGtkStyle from
- Qt upstream (#150)
-
----
- src/decoration/decorationplugin.cpp | 2 +-
- src/decoration/qgnomeplatformdecoration.json | 2 +-
- src/theme/platformplugin.cpp | 2 +-
- src/theme/qgnomeplatformtheme.json | 2 +-
- 4 files changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/src/decoration/decorationplugin.cpp b/src/decoration/decorationplugin.cpp
-index 40737e4..fb367df 100644
---- a/src/decoration/decorationplugin.cpp
-+++ b/src/decoration/decorationplugin.cpp
-@@ -23,7 +23,7 @@
- QWaylandAbstractDecoration *QGnomePlatformDecorationPlugin::create(const QString &key, const QStringList &paramList)
- {
- Q_UNUSED(paramList)
-- if (key == "gnome" || key == "gtk3" || key == "qgnomeplatform")
-+ if (key == "gnome" || key == "qgnomeplatform")
- return new QGnomePlatformDecoration();
- return nullptr;
- }
-diff --git a/src/decoration/qgnomeplatformdecoration.json b/src/decoration/qgnomeplatformdecoration.json
-index 891c3e4..a4a854d 100644
---- a/src/decoration/qgnomeplatformdecoration.json
-+++ b/src/decoration/qgnomeplatformdecoration.json
-@@ -1,3 +1,3 @@
- {
-- "Keys": [ "gnome", "gtk3", "qgnomeplatform" ]
-+ "Keys": [ "gnome", "qgnomeplatform" ]
- }
-diff --git a/src/theme/platformplugin.cpp b/src/theme/platformplugin.cpp
-index 9908bee..f43ff4e 100644
---- a/src/theme/platformplugin.cpp
-+++ b/src/theme/platformplugin.cpp
-@@ -27,7 +27,7 @@ QGnomePlatformThemePlugin::QGnomePlatformThemePlugin(QObject *parent)
- QPlatformTheme *QGnomePlatformThemePlugin::create(const QString &key, const QStringList &paramList)
- {
- Q_UNUSED(paramList)
-- if (key == "gnome" || key == "gtk3" || key == "qgnomeplatform")
-+ if (key == "gnome" || key == "qgnomeplatform")
- return new QGnomePlatformTheme();
- return nullptr;
- }
-diff --git a/src/theme/qgnomeplatformtheme.json b/src/theme/qgnomeplatformtheme.json
-index 891c3e4..a4a854d 100644
---- a/src/theme/qgnomeplatformtheme.json
-+++ b/src/theme/qgnomeplatformtheme.json
-@@ -1,3 +1,3 @@
- {
-- "Keys": [ "gnome", "gtk3", "qgnomeplatform" ]
-+ "Keys": [ "gnome", "qgnomeplatform" ]
- }