1
0
mirror of https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git synced 2025-04-01 02:42:39 +08:00

Fix Qt 6.5 deprecation warnings

Signed-off-by: Michael Jackson <mike.jackson@bluequartz.net>
This commit is contained in:
Michael Jackson 2023-06-22 18:04:49 -04:00
parent 27edfe63ee
commit b099a714cf

View File

@ -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;