qt - Remove Warning- QML Connections: Cannot assign to non-existent property "onValueChanged" -


my code runs fine expected why warning messsage:

qml connections: cannot assign non-existent property "onvaluechanged" 

here how linking signal.

connections {     target: mymodel     onvaluechanged: {         console.log("valued changedrecieved in qml")     } 

mymodel c++ class exposing qml using engine.rootcontext()->setcontextproperty("mymodel", &model);

is there way remove warning?


Comments

Popular posts from this blog

javascript - three.js lot of meshes optimization -

smartface.io - Proper way to change color scheme for whole application -

Email notification in google apps script -