(self, text, type = AccountMixin.NORMAL)
| 416 | |
| 417 | class Ui_AddressBookWidgetItem(QtGui.QTableWidgetItem, AccountMixin): |
| 418 | def __init__ (self, text, type = AccountMixin.NORMAL): |
| 419 | super(QtGui.QTableWidgetItem, self).__init__(text) |
| 420 | self.label = text |
| 421 | self.type = type |
| 422 | self.setEnabled(True) |
| 423 | |
| 424 | def data(self, role): |
| 425 | if role == QtCore.Qt.DisplayRole: |
nothing calls this directly
no test coverage detected