diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2024-03-09 00:57:41 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2024-03-09 01:03:06 +0100 |
commit | 34ed989923e6cf1c509d2f2fc113ce23e9c2e314 (patch) | |
tree | 68c658ca7fa49cc89106f12820d498e51b963a12 /x11-misc/sddm/files/sddm-0.18.1-qt-5.15.2.patch | |
parent | sys-apps/eza: add 0.18.6 (diff) | |
download | gentoo-34ed989923e6cf1c509d2f2fc113ce23e9c2e314.tar.gz gentoo-34ed989923e6cf1c509d2f2fc113ce23e9c2e314.tar.bz2 gentoo-34ed989923e6cf1c509d2f2fc113ce23e9c2e314.zip |
x11-misc/sddm: move 0.18.1 patches into patchset tarball
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'x11-misc/sddm/files/sddm-0.18.1-qt-5.15.2.patch')
-rw-r--r-- | x11-misc/sddm/files/sddm-0.18.1-qt-5.15.2.patch | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/x11-misc/sddm/files/sddm-0.18.1-qt-5.15.2.patch b/x11-misc/sddm/files/sddm-0.18.1-qt-5.15.2.patch deleted file mode 100644 index 7179d14e4c1e..000000000000 --- a/x11-misc/sddm/files/sddm-0.18.1-qt-5.15.2.patch +++ /dev/null @@ -1,23 +0,0 @@ -From e93bf95c54ad8c2a1604f8d7be05339164b19308 Mon Sep 17 00:00:00 2001 -From: "aacid@kde.org" <aacid@kde.org> -Date: Thu, 12 Nov 2020 23:42:48 +0100 -Subject: [PATCH] Fix compilation once QTBUG-88431 gets fixed - -And also comes closes to Qt6 compatibility ---- - src/daemon/XorgDisplayServer.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/daemon/XorgDisplayServer.cpp b/src/daemon/XorgDisplayServer.cpp -index 5f93a1b3..d5f29a94 100644 ---- a/src/daemon/XorgDisplayServer.cpp -+++ b/src/daemon/XorgDisplayServer.cpp -@@ -65,7 +65,7 @@ namespace SDDM { - // create a random hexadecimal number - const char *digits = "0123456789abcdef"; - for (int i = 0; i < 32; ++i) -- m_cookie[i] = digits[dis(gen)]; -+ m_cookie[i] = QLatin1Char(digits[dis(gen)]); - } - - XorgDisplayServer::~XorgDisplayServer() { |