summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2020-02-15 14:24:55 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2020-02-15 14:25:22 +0100
commit141e4426b3b384677f06b4a9d442ca90c27944ff (patch)
tree7b82d8a03525fc140abec3d59bfb23e2b45707e1 /kde-plasma/kwin/files
parentsys-apps/mcstrans: stable 3.0 (diff)
downloadgentoo-141e4426b3b384677f06b4a9d442ca90c27944ff.tar.gz
gentoo-141e4426b3b384677f06b4a9d442ca90c27944ff.tar.bz2
gentoo-141e4426b3b384677f06b4a9d442ca90c27944ff.zip
kde-plasma: Drop KDE Plasma 5.17.4
Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-plasma/kwin/files')
-rw-r--r--kde-plasma/kwin/files/kwin-5.17.4-possible-kdecoration-crash-in-systemsettings.patch58
1 files changed, 0 insertions, 58 deletions
diff --git a/kde-plasma/kwin/files/kwin-5.17.4-possible-kdecoration-crash-in-systemsettings.patch b/kde-plasma/kwin/files/kwin-5.17.4-possible-kdecoration-crash-in-systemsettings.patch
deleted file mode 100644
index b738fd7b013f..000000000000
--- a/kde-plasma/kwin/files/kwin-5.17.4-possible-kdecoration-crash-in-systemsettings.patch
+++ /dev/null
@@ -1,58 +0,0 @@
-From 1a13015d2d1de3ffb9450143480e729057992c45 Mon Sep 17 00:00:00 2001
-From: David Edmundson <kde@davidedmundson.co.uk>
-Date: Sat, 14 Dec 2019 16:08:16 +0100
-Subject: Possible fix for KDecoration crash in systemsettings
-
-Summary:
-I could never reproduce the crash, but we know from gdb that it's from
-the decorationSettings object
-
-We are setting the same QObject instance as a context property in
-multiple contexts at once. This is already slightly odd especially from the POV of
-Qt's internal property cache.
-
-Given we want one object to be exposed to all contexts, we can expose it
-to the parent context only once and achieve the same result in a simpler
-way.
-
-BUG: 411166
-
-Test Plan:
-Verified opening and closing system settings still worked for me.
-I could never reproduce the original crash.
-
-Reviewers: #kwin, ngraham
-
-Reviewed By: ngraham
-
-Subscribers: ngraham, apol, kwin
-
-Tags: #kwin
-
-Differential Revision: https://phabricator.kde.org/D25913
----
- plugins/kdecorations/aurorae/src/aurorae.cpp | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/plugins/kdecorations/aurorae/src/aurorae.cpp b/plugins/kdecorations/aurorae/src/aurorae.cpp
-index f3ad059..c37f00e 100644
---- a/plugins/kdecorations/aurorae/src/aurorae.cpp
-+++ b/plugins/kdecorations/aurorae/src/aurorae.cpp
-@@ -262,6 +262,7 @@ Decoration::Decoration(QObject *parent, const QVariantList &args)
- {
- m_themeName = findTheme(args);
- Helper::instance().ref();
-+ Helper::instance().rootContext()->setContextProperty(QStringLiteral("decorationSettings"), settings().data());
- }
-
- Decoration::~Decoration()
-@@ -289,7 +290,6 @@ void Decoration::init()
-
- m_qmlContext = new QQmlContext(Helper::instance().rootContext(), this);
- m_qmlContext->setContextProperty(QStringLiteral("decoration"), this);
-- m_qmlContext->setContextProperty(QStringLiteral("decorationSettings"), s.data());
- auto component = Helper::instance().component(m_themeName);
- if (!component) {
- return;
---
-cgit v1.1