I have a QTable in Qt 3.3.7 and have it working so I can sort the columns. The one problem is some of my columns contain numerical values and the QTable only sorts by strings. So if I have the numbers 1-30 in a row in my table and I sort that row from lowest to highest, 10-19 is lower than 2 and anything else because "1" comes before "2" in a string. So how do I need to go about doing this? Is there a nice convenience in Qt 3 that I am just not seeing? Thanks for your help!