wayland: Use modern syntax for method invokation

Change-Id: I4b4d15fcb932460a1b6a132145451fa2990496ad
Reviewed-by: David Redondo <qt@david-redondo.de>
This commit is contained in:
David Edmundson 2025-05-30 16:01:25 +03:00
parent 3bf9047a34
commit ca27a661bd

View File

@ -704,7 +704,7 @@ void QWaylandWindow::applyConfigureWhenPossible()
{
if (!mWaitingToApplyConfigure) {
mWaitingToApplyConfigure = true;
QMetaObject::invokeMethod(this, "applyConfigure", Qt::QueuedConnection);
QMetaObject::invokeMethod(this, &QWaylandWindow::applyConfigure, Qt::QueuedConnection);
}
}