-
Since QtJambi 5.15.18 (also tested with 5.15.20 and 6.7.0), I get an exception somewhere in my application during the construction of a subclass of
As far as I know I'm not doing anything special and I have no clue what causes this exception. Is this a bug in QtJambi or should I write my code in a different way? Is it clear from the stack trace what is happening or do I need to produce a minimal reproducable example? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Does your class |
Beta Was this translation helpful? Give feedback.
Does your class
appgui.ProjectNotes
have a property called "editor"? A property with annotation@QtPropertyConstant
must not have a setter or notify signal. As QtJambi autodetects properties, even the appearance of a methodsetEditor
is enough to cause this issue. You can hide the setter method by annotation@QtPropertyWriter(enabled=false)
.