QML Connections:: Cannot assign to non-existent property "onIgnoreChanged"
Unsolved
General and Desktop
-
I'm porting an application originally written for Qt 4.8, now porting to Qt 5.8. The following message is displayed in the Application Output on start-up.
PlantInputs.qml:120:21: QML Connections: Cannot assign to non-existent property "onIgnoreChanged"
This is in a section of code:
RoundedSwitch { id: ignoreState ... Connections { target: model onIgnoreChanged: { ... } }
Is this an event that was previously supported and now isn't? How should I address this?