I do this all of the time and it works fine.

     QModelIndex index = createIndex(row,col);
     emit dataChanged(index,index);


Have you tried it under 5.8.0RC?
It was working under 5.7.1 and before.
What value for column are you using?
For AbstractListModel, I was using 0 (zero)

I am at 5.7
Yes, for a List model, col would always be 0.
Per a previous post, are you adding or removing rows.
If so, was that all reported (emitted) so the views know about it.
Models are a pain in the butt in that if you do not
use them correctly, they will silently misbehave
and not necessarily right away.

You should also use the "ModelTest" class to
point out the mistakes that it can.

Bill

_______________________________________________
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest

Reply via email to