summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2024-03-24 21:37:04 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2024-03-24 22:02:15 +0100
commitdcc5ac87c3c7da7b11384c424d5fdb0063fc3eae (patch)
tree8aea3b8ad85c49410032b05a03c25e0fcf89f7b2 /kde-frameworks/kio/files/kio-6.0.0-kterminallauncherjob.patch
parentkde-frameworks/kiconthemes: Add missing dev-qt/qtbase:6= slot op (diff)
downloadgentoo-dcc5ac87c3c7da7b11384c424d5fdb0063fc3eae.tar.gz
gentoo-dcc5ac87c3c7da7b11384c424d5fdb0063fc3eae.tar.bz2
gentoo-dcc5ac87c3c7da7b11384c424d5fdb0063fc3eae.zip
kde-frameworks/kio: Backport various bug/regression fixes from 6.1.0
Berk Elyesa Yıldırım (1): Drop legacy keys for m_runOnDiscreteGpuBool Jonathan Marten (1): kioexec: Remove temporary files after the main loop has completed Martin Seher (1): fix hide service menu items in context menu Méven Car (2): KFileitem: Use internal permissions as best case scenario KFileItem: when checking access use current user Nicolas Fella (4): [knewfilemenu] Fix error handling when creating a folder that already exists [kterminallauncherjob] Inherit default process environment from parent [knewfilemenu] Add window title for new file dialog [kfileplacesmodel] Remove wrong assert Patrycja Rosa (1): Fix sprintf buffer leaks on 32-bit systems Sergey Katunin (1): Revert "Temporarily revert "Consider slow files as remote files in previewjob"" Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks/kio/files/kio-6.0.0-kterminallauncherjob.patch')
-rw-r--r--kde-frameworks/kio/files/kio-6.0.0-kterminallauncherjob.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/kde-frameworks/kio/files/kio-6.0.0-kterminallauncherjob.patch b/kde-frameworks/kio/files/kio-6.0.0-kterminallauncherjob.patch
deleted file mode 100644
index 2c9b594b33ee..000000000000
--- a/kde-frameworks/kio/files/kio-6.0.0-kterminallauncherjob.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From 6e7775d315f389df0a440ed62b842ce83dc9a27e Mon Sep 17 00:00:00 2001
-From: Nicolas Fella <nicolas.fella@gmx.de>
-Date: Fri, 1 Mar 2024 22:16:07 +0100
-Subject: [PATCH] [kterminallauncherjob] Inherit default process environment
- from parent
-
-Before Qt 6.3, an empty (default constructed) QProcessEnvironment caused
-QProcess to incorrectly inherit the environment variables from the parent
-process. This was fixed in qtbase 5fc9c02a695.
-
-CommandLauncherJob was adjusted for this in 916984940f64e07db9b4d152be9f2a87dda0cfb4,
-however here we are overriding its default env with our own default-constructed one
-
-BUG: 482107
----
- src/gui/kterminallauncherjob.cpp | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/gui/kterminallauncherjob.cpp b/src/gui/kterminallauncherjob.cpp
-index c4e83fb11b..edd99327bd 100644
---- a/src/gui/kterminallauncherjob.cpp
-+++ b/src/gui/kterminallauncherjob.cpp
-@@ -22,7 +22,7 @@ public:
- QString m_fullCommand; // "xterm -e ls"
- QString m_desktopName;
- QByteArray m_startupId;
-- QProcessEnvironment m_environment;
-+ QProcessEnvironment m_environment{QProcessEnvironment::InheritFromParent};
- };
-
- KTerminalLauncherJob::KTerminalLauncherJob(const QString &command, QObject *parent)
---
-GitLab
-