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

Email notification in google apps script -

c++ - Difference between pre and post decrement in recursive function argument -

javascript - IE11 incompatibility with jQuery's 'readonly'? -