Changeset 85 for gajim/branches/chat2muc/src/gajim.py
- Timestamp:
- 07/16/07 22:06:21 (3 years ago)
- Files:
-
- 1 modified
-
gajim/branches/chat2muc/src/gajim.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
gajim/branches/chat2muc/src/gajim.py
r83 r85 1206 1206 1207 1207 def handle_event_gc_invitation(self, account, array): 1208 #('GC_INVITATION', (room_jid, jid_from, reason, password ))1208 #('GC_INVITATION', (room_jid, jid_from, reason, password, is_continued)) 1209 1209 jid = gajim.get_jid_without_resource(array[1]) 1210 1210 room_jid = array[0] 1211 1211 if helpers.allow_popup_window(account) or not self.systray_enabled: 1212 1212 dialogs.InvitationReceivedDialog(account, room_jid, jid, array[3], 1213 array[2] )1213 array[2], is_continued=array[3]) 1214 1214 return 1215 1215
