I was wondering what kind of data I can use to handle a dataChanged
-signal in a QML ListModel
.
I found out that it has three arguments, two of which are QModelIndices
and one is a QVariant(...)
.
So from the first two (which seems to be the same?) I can get the row, column (which is supposed to be 0), the model itself and uhm... stuff
But why do I get it twice? And what is the content of the third? It is not null, but I haven't found a property I could use to retrieve some useful data from it.