(self, cnt)
| 55 | self.address = str(address) |
| 56 | |
| 57 | def setUnreadCount(self, cnt): |
| 58 | if hasattr(self, "unreadCount") and self.unreadCount == int(cnt): |
| 59 | return |
| 60 | self.unreadCount = int(cnt) |
| 61 | if isinstance(self, QtGui.QTreeWidgetItem): |
| 62 | self.emitDataChanged() |
| 63 | |
| 64 | def setEnabled(self, enabled): |
| 65 | self.isEnabled = enabled |
no outgoing calls
no test coverage detected