Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kcompletion for openSUSE:Factory checked in at 2021-01-30 13:55:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kcompletion (Old) and /work/SRC/openSUSE:Factory/.kcompletion.new.28504 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kcompletion" Sat Jan 30 13:55:56 2021 rev:89 rq:866944 version:5.78.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kcompletion/kcompletion.changes 2021-01-13 18:17:14.876996002 +0100 +++ /work/SRC/openSUSE:Factory/.kcompletion.new.28504/kcompletion.changes 2021-01-30 13:55:57.341983728 +0100 @@ -1,0 +2,7 @@ +Mon Jan 25 22:29:28 UTC 2021 - Luca Beltrame <[email protected]> + +- Add upstream patch to fix Okular search bar no longer closed + when pressing ESC (kde#431493): + * 0001-Fix-regression-caused-due-to-porting-from-operator-t.patch + +------------------------------------------------------------------- New: ---- 0001-Fix-regression-caused-due-to-porting-from-operator-t.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kcompletion.spec ++++++ --- /var/tmp/diff_new_pack.GqbBrT/_old 2021-01-30 13:55:57.953984938 +0100 +++ /var/tmp/diff_new_pack.GqbBrT/_new 2021-01-30 13:55:57.957984946 +0100 @@ -36,6 +36,8 @@ Source2: frameworks.keyring %endif Source99: baselibs.conf +# PATCH-FIX-UPSTREAM +Patch0: 0001-Fix-regression-caused-due-to-porting-from-operator-t.patch BuildRequires: extra-cmake-modules >= %{_kf5_bugfix_version} BuildRequires: fdupes BuildRequires: kf5-filesystem @@ -78,6 +80,7 @@ %prep %setup -q +%autopatch -p1 %build %cmake_kf5 -d build ++++++ 0001-Fix-regression-caused-due-to-porting-from-operator-t.patch ++++++ >From 7acda936f06193e9fc85ae5cf9ccc8d65971f657 Mon Sep 17 00:00:00 2001 From: Albert Astals Cid <[email protected]> Date: Tue, 12 Jan 2021 23:43:19 +0100 Subject: [PATCH] Fix regression caused due to porting from operator+ to operator| BUGS: 431493 --- src/klineedit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/klineedit.cpp b/src/klineedit.cpp index 1cc9316..8201259 100644 --- a/src/klineedit.cpp +++ b/src/klineedit.cpp @@ -1222,7 +1222,7 @@ bool KLineEditPrivate::overrideShortcut(const QKeyEvent *e) // 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; } -- 2.30.0
