Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to reference auto-generated qproperty flags in another flag #1232

Open
LeonMatthesKDAB opened this issue Mar 20, 2025 · 1 comment · May be fixed by #1241
Open

Unable to reference auto-generated qproperty flags in another flag #1232

LeonMatthesKDAB opened this issue Mar 20, 2025 · 1 comment · May be fixed by #1241
Labels
⏮️ backport-candidate Change which could be backported to the stable series 🪲 bug Something isn't working

Comments

@LeonMatthesKDAB
Copy link
Collaborator

Currently, this does not work:

#[qobject]
#[qproperty(i32, number, READ, WRITE, NOTIFY)]
#[qproperty(QString, string, READ, WRITE, NOTIFY=number_changed)] // <-- CXX-Qt will error that number_changed doesn't exist.
type MyObject = super::MyObjectRust;

However, the number_changed signal is being generated by the number property.
This sounds like an issue with name resolution, as the generated values are being added too late.

We got feedback from the training yesterday that this is pretty unexpected, especially as you can use the signal outside the bridge, and it is also an error to declare your own signal with that same name.

@LeonMatthesKDAB LeonMatthesKDAB added 🪲 bug Something isn't working ⏮️ backport-candidate Change which could be backported to the stable series labels Mar 20, 2025
@LeonMatthesKDAB
Copy link
Collaborator Author

cc @BenFordTytherington

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
⏮️ backport-candidate Change which could be backported to the stable series 🪲 bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant