remove unusefull code

This commit is contained in:
Yann Leboulanger 2005-09-24 09:59:34 +00:00
parent 63c890da2b
commit 63449d5f9d
1 changed files with 1 additions and 18 deletions

View File

@ -79,29 +79,12 @@ class Systray:
if not l in self.jids: if not l in self.jids:
self.jids.append(l) self.jids.append(l)
self.set_img() self.set_img()
# we append to the number of unread messages
nb = self.plugin.roster.nb_unread
for acct in gajim.connections:
# in chat / groupchat windows
for kind in ['chats', 'gc']:
jids = self.plugin.windows[acct][kind]
for jid in jids:
if jid != 'tabbed':
nb += jids[jid].nb_unread[jid]
def remove_jid(self, jid, account, typ): def remove_jid(self, jid, account, typ):
l = [account, jid, typ] l = [account, jid, typ]
if l in self.jids: if l in self.jids:
self.jids.remove(l) self.jids.remove(l)
self.set_img() self.set_img()
# we remove from the number of unread messages
nb = self.plugin.roster.nb_unread
for acct in gajim.connections:
# in chat / groupchat windows
for kind in ['chats', 'gc']:
for jid in self.plugin.windows[acct][kind]:
if jid != 'tabbed':
nb += self.plugin.windows[acct][kind][jid].nb_unread[jid]
def change_status(self, global_status): def change_status(self, global_status):
''' set tray image to 'global_status' ''' ''' set tray image to 'global_status' '''