Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kpimtextedit for openSUSE:Factory checked in at 2025-04-07 17:35:51 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kpimtextedit (Old) and /work/SRC/openSUSE:Factory/.kpimtextedit.new.1907 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kpimtextedit" Mon Apr 7 17:35:51 2025 rev:117 rq:1266805 version:24.12.3 Changes: -------- --- /work/SRC/openSUSE:Factory/kpimtextedit/kpimtextedit.changes 2025-03-07 16:39:12.589927927 +0100 +++ /work/SRC/openSUSE:Factory/.kpimtextedit.new.1907/kpimtextedit.changes 2025-04-07 17:36:06.003525856 +0200 @@ -1,0 +2,6 @@ +Thu Apr 3 08:19:36 UTC 2025 - Christophe Marin <christo...@krop.fr> + +- Add upstream change: + * 0001-Fix-build-with-Qt-6.9.patch + +------------------------------------------------------------------- New: ---- 0001-Fix-build-with-Qt-6.9.patch BETA DEBUG BEGIN: New:- Add upstream change: * 0001-Fix-build-with-Qt-6.9.patch BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kpimtextedit.spec ++++++ --- /var/tmp/diff_new_pack.QO2gaq/_old 2025-04-07 17:36:06.507546937 +0200 +++ /var/tmp/diff_new_pack.QO2gaq/_new 2025-04-07 17:36:06.511547105 +0200 @@ -31,6 +31,8 @@ Source1: https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz.sig Source2: applications.keyring %endif +# PATCH-FIX-UPSTREAM +Patch0: 0001-Fix-build-with-Qt-6.9.patch BuildRequires: doxygen BuildRequires: kf6-extra-cmake-modules >= %{kf6_version} BuildRequires: cmake(KF6Codecs) >= %{kf6_version} ++++++ 0001-Fix-build-with-Qt-6.9.patch ++++++ >From 2c36ea1bdd1dcb60cd042a10668d64447484615d Mon Sep 17 00:00:00 2001 From: Nicolas Fella <nicolas.fe...@gmx.de> Date: Wed, 11 Dec 2024 13:42:42 +0100 Subject: [PATCH] Fix build with Qt 6.9 Assigning {} to QBrush is ambiuous --- src/grantleebuilder/markupdirector.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/grantleebuilder/markupdirector.cpp b/src/grantleebuilder/markupdirector.cpp index edd8fa09..02401291 100644 --- a/src/grantleebuilder/markupdirector.cpp +++ b/src/grantleebuilder/markupdirector.cpp @@ -545,12 +545,12 @@ void MarkupDirector::processClosingElements(const QTextBlock::iterator &it) case SpanBackground: m_builder->endBackground(); // Clear background otherwise if we select 2 lines with same color it will not applied. bug #442416 - d->m_openBackground = {}; + d->m_openBackground = QBrush(); break; case SpanForeground: m_builder->endForeground(); // Clear foreground text color otherwise if we select 2 lines with same text color it will not applied. bug #442416 - d->m_openForeground = {}; + d->m_openForeground = QBrush(); break; case Anchor: m_builder->endAnchor(); -- 2.49.0