(self, other)
| 409 | |
| 410 | # label (or address) alphabetically, disabled at the end |
| 411 | def __lt__(self, other): |
| 412 | if (isinstance(other, MessageList_SubjectWidget)): |
| 413 | return self.label.lower() < other.label.lower() |
| 414 | return super(QtGui.QTableWidgetItem, self).__lt__(other) |
| 415 | |
| 416 | |
| 417 | class Ui_AddressBookWidgetItem(QtGui.QTableWidgetItem, AccountMixin): |