summaryrefslogtreecommitdiff
path: root/kde-frameworks/plasma/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-11-27 13:17:14 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-11-27 13:17:14 +0000
commitb44896ea03d59328305f2dc8fb8987b21983cfb2 (patch)
tree79d011b3f463370ad56a3076c5fe0f6945fcbc3c /kde-frameworks/plasma/files
parenta6f269cfc68657e7ab057411d29bf695822c011b (diff)
gentoo auto-resync : 27:11:2022 - 13:17:13
Diffstat (limited to 'kde-frameworks/plasma/files')
-rw-r--r--kde-frameworks/plasma/files/plasma-5.96.0-fix-crash-in-WindowShadowTile.patch55
1 files changed, 0 insertions, 55 deletions
diff --git a/kde-frameworks/plasma/files/plasma-5.96.0-fix-crash-in-WindowShadowTile.patch b/kde-frameworks/plasma/files/plasma-5.96.0-fix-crash-in-WindowShadowTile.patch
deleted file mode 100644
index 8d37a508b359..000000000000
--- a/kde-frameworks/plasma/files/plasma-5.96.0-fix-crash-in-WindowShadowTile.patch
+++ /dev/null
@@ -1,55 +0,0 @@
-From 50eaece7aef004b588a684c9fadff0f6787f2ef8 Mon Sep 17 00:00:00 2001
-From: David Edmundson <kde@davidedmundson.co.uk>
-Date: Thu, 14 Jul 2022 22:45:14 +0100
-Subject: [PATCH] Scope DialogShadows lifetime to application
-
-- DialogShadows own KWayland::Client::buffer objects
- - Buffer cleanup makes wayland calls
- - wayland calls after QGuiApplication has stoped will fail
-
-Q_GLOBAL_STATIC mangaged objects can outlive the QGuiApplication.
-
-BUG:443706
----
- src/plasmaquick/dialogshadows.cpp | 18 ++++++------------
- 1 file changed, 6 insertions(+), 12 deletions(-)
-
-diff --git a/src/plasmaquick/dialogshadows.cpp b/src/plasmaquick/dialogshadows.cpp
-index 17c9a41e2..93b9bcc0f 100644
---- a/src/plasmaquick/dialogshadows.cpp
-+++ b/src/plasmaquick/dialogshadows.cpp
-@@ -37,17 +37,6 @@ public:
- QVector<KWindowShadowTile::Ptr> m_tiles;
- };
-
--class DialogShadowsSingleton
--{
--public:
-- DialogShadowsSingleton()
-- {
-- }
--
-- DialogShadows self;
--};
--
--Q_GLOBAL_STATIC(DialogShadowsSingleton, privateDialogShadowsSelf)
-
- DialogShadows::DialogShadows(QObject *parent, const QString &prefix)
- : Plasma::Svg(parent)
-@@ -64,7 +53,12 @@ DialogShadows::~DialogShadows()
-
- DialogShadows *DialogShadows::self()
- {
-- return &privateDialogShadowsSelf->self;
-+ // KF6 port to Q_APPLICATION_STATIC
-+ static DialogShadows *s_privateDialogShadowsSelf = nullptr;
-+ if (!s_privateDialogShadowsSelf) {
-+ s_privateDialogShadowsSelf = new DialogShadows(qApp);
-+ }
-+ return s_privateDialogShadowsSelf;
- }
-
- void DialogShadows::addWindow(QWindow *window, Plasma::FrameSvg::EnabledBorders enabledBorders)
---
-GitLab
-