Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-base for openSUSE:Factory 
checked in at 2023-04-08 17:39:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/qt6-base (Old)
 and      /work/SRC/openSUSE:Factory/.qt6-base.new.19717 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "qt6-base"

Sat Apr  8 17:39:26 2023 rev:30 rq:1077991 version:6.5.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/qt6-base/qt6-base.changes        2023-04-05 
21:36:29.434854590 +0200
+++ /work/SRC/openSUSE:Factory/.qt6-base.new.19717/qt6-base.changes     
2023-04-08 17:39:42.814269757 +0200
@@ -1,0 +2,6 @@
+Sat Apr  8 10:42:33 UTC 2023 - Christophe Marin <christo...@krop.fr>
+
+- Add upstream change:
+  * 0001-QApplication-Fix-DEPRECATED_VERSION-for-setActiveWin.patch
+
+-------------------------------------------------------------------

New:
----
  0001-QApplication-Fix-DEPRECATED_VERSION-for-setActiveWin.patch

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

Other differences:
------------------
++++++ qt6-base.spec ++++++
--- /var/tmp/diff_new_pack.H6qn0v/_old  2023-04-08 17:39:44.682280481 +0200
+++ /var/tmp/diff_new_pack.H6qn0v/_new  2023-04-08 17:39:44.730280757 +0200
@@ -39,6 +39,7 @@
 Source:         
https://download.qt.io/official_releases/qt/%{short_version}/%{real_version}%{tar_suffix}/submodules/%{tar_name}-%{real_version}%{tar_suffix}.tar.xz
 Source99:       qt6-base-rpmlintrc
 # Patches 0-100 are upstream patches #
+Patch0:         0001-QApplication-Fix-DEPRECATED_VERSION-for-setActiveWin.patch
 # Patches 100-200 are openSUSE and/or non-upstream(able) patches #
 Patch100:       0001-Tell-the-truth-about-private-API.patch
 %if 0%{?suse_version} == 1500

++++++ 0001-QApplication-Fix-DEPRECATED_VERSION-for-setActiveWin.patch ++++++
>From 99975ec07feb6b1a9f6be9e0d392a35e40f9550a Mon Sep 17 00:00:00 2001
From: Nicolas Fella <nicolas.fe...@kdab.com>
Date: Tue, 14 Mar 2023 19:14:41 +0100
Subject: [PATCH] QApplication: Fix DEPRECATED_VERSION for setActiveWindow

It's not deprecated in 6.4, only 6.5

Pick-to: 6.5
Change-Id: I86a09b9ce5a7f4d8b1d80a6e67218dfe00f93844
Reviewed-by: Volker Hilsheimer <volker.hilshei...@qt.io>
---
 src/widgets/kernel/qapplication.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/widgets/kernel/qapplication.h 
b/src/widgets/kernel/qapplication.h
index c4c73d4cf8..fd698fb69f 100644
--- a/src/widgets/kernel/qapplication.h
+++ b/src/widgets/kernel/qapplication.h
@@ -79,8 +79,8 @@ public:
 
     static QWidget *activeWindow();
 
-#if QT_DEPRECATED_SINCE(6,4)
-    QT_DEPRECATED_VERSION_X_6_4("Use QWidget::activateWindow() instead.")
+#if QT_DEPRECATED_SINCE(6, 5)
+    QT_DEPRECATED_VERSION_X_6_5("Use QWidget::activateWindow() instead.")
     static void setActiveWindow(QWidget* act);
 #endif
 
-- 
2.40.0

Reply via email to