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
Post a Comment