(self, unreadCount = False)
| 188 | return unicode(self.address, 'utf-8') |
| 189 | |
| 190 | def _getAddressBracket(self, unreadCount = False): |
| 191 | ret = "" |
| 192 | if unreadCount: |
| 193 | ret += " (" + str(self.unreadCount) + ")" |
| 194 | if self.address is not None: |
| 195 | ret += " (" + self.address + ")" |
| 196 | return ret |
| 197 | |
| 198 | def data(self, column, role): |
| 199 | if column == 0: |