Hi, I have a QML PathView hooked up to a C++ model. My problem is that when I update a list item in C++, the QML PathView hooked up to it is not updated.
My update function is: void FrameList::rename(int i, const QString &newname) { _itemList[i].setName(newname); QModelIndex r1 = index(i); QModelIndex r2 = index(i); emit dataChanged(r1,r2); } Kind of basic question, but as it looks to me that dataChanged() is not picked up by QML side here, I wonder how I should go about it? Thanks, Harri _______________________________________________ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest