From b099a714cf43a4587e2528a9f47bdf2b856299bc Mon Sep 17 00:00:00 2001 From: Michael Jackson Date: Thu, 22 Jun 2023 18:04:49 -0400 Subject: [PATCH] Fix Qt 6.5 deprecation warnings Signed-off-by: Michael Jackson --- src/FloatingDockContainer.cpp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/FloatingDockContainer.cpp b/src/FloatingDockContainer.cpp index 927910d..ee3d347 100644 --- a/src/FloatingDockContainer.cpp +++ b/src/FloatingDockContainer.cpp @@ -1010,7 +1010,11 @@ void CFloatingDockContainer::moveFloating() // the main window as the active window for some reason. This fixes // that by resetting the active window to the floating widget after // updating the overlays. +#if QT_VERSION_CHECK(6, 4, 0) + activateWindow(); +#else QApplication::setActiveWindow(this); +#endif #endif break; default: @@ -1248,7 +1252,11 @@ void CFloatingDockContainer::moveEvent(QMoveEvent *event) // the main window as the active window for some reason. This fixes // that by resetting the active window to the floating widget after // updating the overlays. - QApplication::setActiveWindow(this); +#if QT_VERSION_CHECK(6, 4, 0) + activateWindow(); +#else + QApplication::setActiveWindow(this); +#endif break; default: break;