Remove outdated patch.

This was a fix for <5.79.0. I thought it was deleted.
This commit is contained in:
rsadowski 2021-02-25 20:59:42 +00:00
parent 3558d22e4c
commit 1955ab06f5

View File

@ -1,17 +0,0 @@
$OpenBSD: patch-src_klineedit_cpp,v 1.1 2021/01/26 20:23:19 rsadowski Exp $
https://invent.kde.org/frameworks/kcompletion/commit/7acda936f06193e9fc85ae5cf9ccc8d65971f657
https://bugs.kde.org/show_bug.cgi?id=431493
Index: src/klineedit.cpp
--- src/klineedit.cpp.orig
+++ src/klineedit.cpp
@@ -1222,7 +1222,7 @@ bool KLineEditPrivate::overrideShortcut(const QKeyEven
// but doesn't dare force as "stronger than kaction shortcuts"...
else if (e->matches(QKeySequence::SelectAll)) {
return true;
- } else if (qApp->platformName() == QLatin1String("xcb") && (key == Qt::CTRL | Qt::Key_E || key == Qt::CTRL | Qt::Key_U)) {
+ } else if (qApp->platformName() == QLatin1String("xcb") && (key == (Qt::CTRL | Qt::Key_E) || key == (Qt::CTRL | Qt::Key_U))) {
return true;
}