Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package eventviews for openSUSE:Factory 
checked in at 2025-05-23 14:28:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/eventviews (Old)
 and      /work/SRC/openSUSE:Factory/.eventviews.new.2732 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "eventviews"

Fri May 23 14:28:53 2025 rev:113 rq:1278390 version:25.04.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/eventviews/eventviews.changes    2025-05-09 
18:43:25.621202454 +0200
+++ /work/SRC/openSUSE:Factory/.eventviews.new.2732/eventviews.changes  
2025-05-23 14:29:40.918372942 +0200
@@ -1,0 +2,6 @@
+Mon May 19 11:37:35 UTC 2025 - Christophe Marin <christo...@krop.fr>
+
+- Add upstream change (kde#473847)
+  * 0001-todoviewsortfilterproxymodel.cpp-fix-regression-in-f.patch
+
+-------------------------------------------------------------------

New:
----
  0001-todoviewsortfilterproxymodel.cpp-fix-regression-in-f.patch

BETA DEBUG BEGIN:
  New:- Add upstream change (kde#473847)
  * 0001-todoviewsortfilterproxymodel.cpp-fix-regression-in-f.patch
BETA DEBUG END:

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ eventviews.spec ++++++
--- /var/tmp/diff_new_pack.qzN65i/_old  2025-05-23 14:29:41.390392852 +0200
+++ /var/tmp/diff_new_pack.qzN65i/_new  2025-05-23 14:29:41.394393021 +0200
@@ -32,6 +32,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-todoviewsortfilterproxymodel.cpp-fix-regression-in-f.patch
 BuildRequires:  doxygen
 BuildRequires:  kf6-extra-cmake-modules >= %{kf6_version}
 BuildRequires:  cmake(KF6CalendarCore) >= %{kf6_version}

++++++ 0001-todoviewsortfilterproxymodel.cpp-fix-regression-in-f.patch ++++++
>From 976f0dead0a65f55aa9a419d7520bfa2fc40ce8a Mon Sep 17 00:00:00 2001
From: Allen Winter <win...@kde.org>
Date: Mon, 5 May 2025 08:32:40 -0400
Subject: [PATCH] todoviewsortfilterproxymodel.cpp - fix regression in
 filterAcceptsRow

In filterAcceptsRow don't worry about invalid source_parent.
Now todos are displayed again.

BUG: 473847
(cherry picked from commit 5c30c6614f3d862051fe51335e2631a7aded9d59)
---
 src/todo/todoviewsortfilterproxymodel.cpp | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/src/todo/todoviewsortfilterproxymodel.cpp 
b/src/todo/todoviewsortfilterproxymodel.cpp
index 9bce704..37b109d 100644
--- a/src/todo/todoviewsortfilterproxymodel.cpp
+++ b/src/todo/todoviewsortfilterproxymodel.cpp
@@ -28,10 +28,6 @@ void TodoViewSortFilterProxyModel::sort(int column, 
Qt::SortOrder order)
 
 bool TodoViewSortFilterProxyModel::filterAcceptsRow(int source_row, const 
QModelIndex &source_parent) const
 {
-    if (!source_parent.isValid()) {
-        return false;
-    }
-
     bool ret = QSortFilterProxyModel::filterAcceptsRow(source_row, 
source_parent);
 
     if (ret && mCalFilter) {
-- 
2.49.0

Reply via email to