Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Shirk <travis@pobox.com>2006-01-08 08:39:30 +0300
committerTravis Shirk <travis@pobox.com>2006-01-08 08:39:30 +0300
commitbafcaace1e6cbb28460a8429002e9a74ce34fb97 (patch)
tree852975b1ec2af0803beee688cfb3153d60e90dff
parentad087f10c45cd3811e3ac266fdf8cc1897e392a6 (diff)
Remove cruft
-rw-r--r--src/groupchat_control.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/groupchat_control.py b/src/groupchat_control.py
index 1815062ff..43d62d8b7 100644
--- a/src/groupchat_control.py
+++ b/src/groupchat_control.py
@@ -1503,17 +1503,10 @@ class GroupchatControl(ChatControlBase):
def on_info(self, widget, ck):
'''Call vcard_information_window class to display user's information'''
c = gajim.contacts.get_gc_contact(self.account, self.room_jid, nick)
-# jid = c.get_full_jid()
-# if gajim.interface.instances[self.account]['infos'].has_key(jid):
-# gajim.interface.instances[self.account]['infos'][jid].window.present()
- # we create a Contact instance
c2 = gajim.contacts.contact_from_gc_contact(c)
if gajim.interface.instances[self.account]['infos'].has_key(c2.jid):
gajim.interface.instances[self.account]['infos'][c2.jid].window.present()
else:
-# # we create a Contact instance
-# c2 = gajim.contacts.contact_from_gc_contact(c)
-# gajim.interface.instances[self.account]['infos'][jid] = \
gajim.interface.instances[self.account]['infos'][c2.jid] = \
vcard.VcardWindow(c2, self.account, False)