> QDeclarativeExpression: Expression "(function() { return
> myPluggedInObj.myModel })" depends on non-NOTIFYable properties:

This message means that one of the properties in the expression does not have a 
NOTIFY signal, so if it changes, the expression will not be re-evaluated, so 
this:

> > Q_PROPERTY(QStringList myModel READ myModel);

Would need to be:

Q_PROPERTY(QStringList myModel READ myModel NOTIFY myModelChanged)

And when the list of strings changed (because of some mechanism in the C++ 
code), you would emit myModelChanged() to tell the QML to update all dependant 
expressions (bindings).

--
Warwick

_______________________________________________
Qt-qml mailing list
Qt-qml@trolltech.com
http://lists.trolltech.com/mailman/listinfo/qt-qml

Reply via email to