| 4328 | # correctly (rather than alphabetically), we need to overload the < |
| 4329 | # operator and use this class instead of QTableWidgetItem. |
| 4330 | class myTableWidgetItem(QtGui.QTableWidgetItem): |
| 4331 | |
| 4332 | def __lt__(self, other): |
| 4333 | return int(self.data(33).toPyObject()) < int(other.data(33).toPyObject()) |
| 4334 | |
| 4335 | |
| 4336 | app = None |
no outgoing calls
no test coverage detected