I have a QTreeWidget with several Columns; I add QTreeWidgetItems
to it. I try to make the second column contain a numerical value for each Item
so I can sort the items by this value
QTreeWidgetItem has a method called setData(int column, int role, QVariant(data))
I cannot find any documentation on what this role
argument is. All I know is that if I set it to 1 or 2 somthing shows up in the column, if I set it to 0 or >=3, nothing shows up the column, regardless, the numbers always end up being sorted alphabetically, which is wrong.