Is that what you want?Qt Code:
tableWidget->verticalHeader()->hide();To copy to clipboard, switch view to plain text mode
Is that what you want?Qt Code:
tableWidget->verticalHeader()->hide();To copy to clipboard, switch view to plain text mode
Nazgul (20th March 2011)
The other warning message is probably coming from using the same QTableWidgetItem several times in calls to setItem(). If you want to add three cells each containing the same value you should create three separate QTableWidgetItems with the same value and add those.
If that is not what you are doing then you will need to show the offending code.
Nazgul (21st March 2011)
Ye, you're right (again), thanks I used twice the QTableWidgetItem.
Could be closes now.
Bookmarks