summaryrefslogtreecommitdiffstats
path: root/src/widgets/kernel
diff options
context:
space:
mode:
authorNicolas Fella <nicolas.fella@kdab.com>2023-03-14 19:14:41 +0100
committerNicolas Fella <nicolas.fella@kdab.com>2023-03-15 21:25:57 +0100
commit99975ec07feb6b1a9f6be9e0d392a35e40f9550a (patch)
tree14a2539ee77722eaeb2b1751dbffb4c21b1e0dc4 /src/widgets/kernel
parent9d05fd9fa20229948da751da981f0a1b2f97fd54 (diff)
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.hilsheimer@qt.io>
Diffstat (limited to 'src/widgets/kernel')
-rw-r--r--src/widgets/kernel/qapplication.h4
1 files 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