woboq / qmetaobject-rs

Integrate Qml and Rust by building the QMetaObject at compile time.
MIT License
620 stars 89 forks source link

Fix call to `QMetaObject::invokeMethod` in Qt 6.5 #287

Closed AdrianEddy closed 1 year ago

AdrianEddy commented 1 year ago

Invoking QMetaObject::invokeMethod with correct number of arguments didn't work correctly, because it checked the number of arguments with the signature of the function. Calling it explicitly with the right number of arguments fixes this issue.

Also added Qt 6.5 to the CI

Closes #286